Quote:
Originally Posted by varmax
Sorry, I dont't understud your question.
In chart posted I've used same setting shows in post #945 to see if ATR reduce DD.
Tester period: 3th march 08 - 17 april 08, GBPUSD/M5, Initial deposit=10000.
I like H1 also. PF=1.66, DD=15%.
Thanks.
|
In the EA you've wrote the next string:
Code:
if (Ask <= LowestBuy - (iATR(NULL, 0, ATR_Period, 0) * ATR_K * 10000 * Point))
I asked about TimeFrame on which ATR is calculates (bold zero in the code).
For every other indicator there is its own TimeFrame.
Code:
double MA3_0 = iMA(NULL, MAperiod, 3, 0, 3, PRICE_CLOSE, 0);
cci=iCCI( NULL, CCI_Period, CCI_lenght, PRICE_TYPICAL, 0);
double B1_1 = iCustom(NULL, iTrendPeriod, "i_Trend", 0, 0, 0, 20, 2, 13, 300, 0, 0);
How do YOU think which TF will be much better for ATR?
Thanks.