Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.344.164 Times

Forecasting Moving Average Method software
Filter: All | Freeware | Demo
 

Forecasting Moving Average Method

1 2 3 4 5 > 
Added: April 03, 2013 | Visits: 390

Moving Average Filter Implementation of Moving Average filter.The moving average filter operates by averaging a number of points from theinput signal to produce each point in the output signal. In equation form,this is written: 1 M-1Y[i] = --- SUM X[i + j] M j=0



Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (44): Moving Average Filter Download

Inverse Distance Weighted (IDW) or Simple Moving Average (SMA) INTERPOLATION This function computes at (Xi,Yi) unknown locations the IDW (w P=1, Q=1 yields interpolation at one point --> P>1, Q=1 yields interpolation at a vector of points --> P>1, Q>1 yields interpolation at a (ir)regular grid of points======================================== INPUTS Xc: (mandatory) [Nx1]...





Platforms: Matlab


Added: August 19, 2013 | Visits: 367

ARFIMA simulations he code performs the simulation of time series with autoregressive fractionally integrated moving average (ARFIMA) models that generalize ARIMA (autoregressive integrated moving average) and ARMA autoregressive moving average models. ARFIMA models allow non-integer values of the differencing...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (41): ARFIMA simulations Download

Added: April 02, 2013 | Visits: 358

TillsonT3 It calculates the Tillson moving average. The user is able to change the parameters such as the smoothing sweeps and the volume factor


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (42): TillsonT3 Download

Added: May 25, 2013 | Visits: 452

Fast moving average In terms of behavior, this is an alternative to filter() for a moving-average kernel, except that it is faster. The speed does not depend on the filter length.The code uses a variant of the cumsum-trick, although not the "garden variety" but in a way that does not run into numerical issues for...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (42): Fast moving average Download

Released: December 15, 2016  |  Added: December 20, 2016 | Visits: 553

Tulip Cell Perform Technical Analysis in Excel with Tulip Cell, the free technical analysis add-in for Excel! With Tulip Cell, you can quickly and easily do technical in any Excel spreadsheet. Tulip Cell is good for doing technical analysis on stock market data, Forex data, options and derivatives,...


Platforms: Windows, Windows 8, Windows 7, Windows Server

License: Freeware Size: 447 KB Download (44): Tulip Cell Download

Estimation value at risk by using Exponentially Weighted Moving Averagege This file contains three m-file which estimate the Value at Risk (VaR) of portfolio composed of two stocks price by using Exponentially Weighted Moving Average.the main function is 'ewmaestimatevar'. For estimating VaR you should use this function. This function also sketch related diagram. at...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (45): Estimation value at risk by using Exponentially Weighted Moving Averagege Download

Added: April 09, 2013 | Visits: 440

movave Very efficient moving average filter implemented using convolution.Usage:Smoothed Data = movave(Data Vector, Averaging Window Size in Samples)See also: slidefilter.m by the same author


Platforms: Matlab

License: Freeware Size: 10 KB Download (45): movave Download

Added: May 08, 2013 | Visits: 508

slidefilter Moving average filter implemented using a "Sliding Sum" technique. Comparatively efficient.Usage:Smoothed Data = slidefilter(Data Vector, Sliding Interval Length in Samples)See also: movave.m


Platforms: Matlab

License: Freeware Size: 10 KB Download (40): slidefilter Download

Added: September 11, 2013 | Visits: 433

CheapHLOCPlot CHEAPHLOCPLOT A free High-Low-Open-Close (and volume and moving average) plot to answer a CSSM thread ("Subject: on using matlab to plot stock charts"). Parm # Description Size Optional ------ ----------- ---- -------- 1 dates 1xN No 2 High prices 1xN No 3 Low prices 1xN No 4 Open prices 1xN No...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (44): CheapHLOCPlot Download

Added: April 05, 2013 | Visits: 298

mvaverage A moving average implementation using build-in filter, which is very fast.


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (43): mvaverage Download

Released: July 31, 2020  |  Added: January 11, 2021 | Visits: 4.099

Data Curve Fit Creator Add-in Data Curve Fit Creator Add-in is an easy-to-use data analysis add-in for Microsoft Excel. It adds curve fitting, interpolation, and data smoothing functions to Excel. Curve fitting functions include polynomial fits and a versatile local regression (loess) function. Interpolations include...


Platforms: Windows, Windows 8, Windows 7, Windows Server

License: Shareware Cost: $79.95 USD Size: 7.12 MB Download (465): Data Curve Fit Creator Add-in Download

Released: June 05, 2012  |  Added: June 05, 2012 | Visits: 611

SmartChart Managing your stock trading activity with “Smart Chart” is a cinch. The program can read practically any ASCII file or MetaStock file and plot the data. The package includes: * Over 30 of the most popular technical indicators into the charting software so you have access to the likes of...


Platforms: Windows

License: Shareware Cost: $69.95 USD Size: 1.41 MB Download (62): SmartChart Download

Released: September 11, 2012  |  Added: September 11, 2012 | Visits: 348

Fractacular Fractacular has 200 beautifully rendered fractal images using the awesome SAM (Stripe Average Method) coloring scheme. The vast majority of them are from deep inside a one pixel square location at the seventeenth node of the northwest side of Seahorse Valley. After creating the software and...


Platforms: Mac

License: Commercial Cost: $1.99 USD Size: 294 MB Download (54): Fractacular Download

Added: April 27, 2013 | Visits: 383

Signal Processing blocks This m-file implements a M-point moving average system.The equation is:y(n)=(x(n)+x(n-1)+.....+x(n-M))/M;M is the order of the M-point moving average system.Syntax:y=mpointaverage(input,order)The argument 'input' is the input sequence.The argument 'order' is T,the order of the M-point moving...


Platforms: Matlab

License: Freeware Size: 10 KB Download (42): Signal Processing blocks Download

Added: July 20, 2013 | Visits: 386

RUNMEAN For vectors, Y = RUNMEAN(X,M) computes a running mean (also known as moving average) on the elements of the vector X. It uses a window of 2*M+1 datapoints. M an positive integer defining (half) the size of the window. In pseudo code: Y(i) = sum(X(j)) / (2*M+1), for j = (i-M):(i+M), and...


Platforms: Matlab

License: Freeware Size: 10 KB Download (45): RUNMEAN Download

Added: July 18, 2013 | Visits: 362

GUI Technical Analysis Tool Instructions:1. Give the symbol of the stock.2. Give today's date in the specific format (months-days-year).3. 'GET DATA' button fetches the data from Yahoo server.4. Choose the number of days you want to examine.5. Pick the fast and slow averages used by the functions (remember fast has to be...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (44): GUI Technical Analysis Tool Download

Added: August 11, 2013 | Visits: 315

EWMA St.Dev. This code calculates the Exponentially Weighted Moving Average Standard Deviation Exponentially weighted moving average (EWMA) standard deviation applies different weights to different returns. More recent returns have greater weight on the variance. The exponentially weighted moving average...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (49): EWMA St.Dev. Download

Released: May 03, 2011  |  Added: May 23, 2011 | Visits: 624

SQLRollingStats SQLRollingStats extends the T-SQL scripting environment with 31 windowed or cumulative functions (in which results for each row depend on previous rows) that can be used as regular functions in queries. This allows metrics such as running totals or moving averages to be easily calculated...


Platforms: Windows

License: Shareware Cost: $199.00 USD Size: 522 KB Download (87): SQLRollingStats Download

Added: June 20, 2013 | Visits: 348

riskcalc Simple VaR Calculator provides: - Evaluation of return distribution of single asset or portfolio of assets; - Volatility forecasts using moving average and exponential algorithm;- Value at Risk of single asset or portfolio measurement using parametric and historical simulation.- Historical data...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 20.48 KB Download (43): riskcalc Download

1 2 3 4 5 >