Trabalho concluído
Termos de Referência
Please implement a fuction:
double chk_momentum_performance(int tf, int period, int bars=0){...}
For the given TimeFrame tf and perio it calculates the result of Momentum as a direct buy/sell indicator. Example:
i pass tf=PERIOD_H1 and period=20 and you calculate for all available history (bars=0 or x bars if this parameter is filled) MOMENTUM-Indicator performance if we buy at positive momentum crossing (at 0 up) and sell at negative momentum crossing (at 0 down) as shown in the picture:
Please use for the buy/sell not directly the Momentum but its Moving Avarage with perio 5. Or use the given MA_MOMENTUM indicator. Its very important you choose most performant solution here (call indicator max 1 per bar, by saving previous 5 indicator values).
Green Arrow means: close all Sell-Positions and open 1 Buy-Position.
Red Arrow means: close all Buy-Position and open 1 Sell-Position.
But in this function we do not really open Position, but we calculate the profit:
Example for given picture:
First we calculate profit for open Sell-Position at 10840 and close it at 10505 = + 335 (but we do not really open any Positions, but only calculate profit!!)
Than we calculate profit for open Buy-Position at 10505 and close it at 10335= - 170.
That for all given history.
The function will be called once a bar at the first tick of the bar.
The function has to use the Bar 1, not the current bar 0 for the Momentum indicator. Hence we react only on fully closed bars/Momentum. Hence the Moving Avarage has to be calculates with bars 1,2,3,4,5.
If you do this job good, i have more such jobs with function for calculation of profit for others indicators like Stochastic, RSI,MACD,ADX,...
The returning value is the profit. //Edit 20161115
