ROMAN5:
Weird. Which settings ? which EA, build ?
Hi everyone,
If visualization is not checked in strategy tester - there is no trading (EA). If checked then it is working fine. This makes me scratch my head.
Any ideas?
angevoyageur:
Weird. Which settings ? which EA, build ?
I built my own Time Breakout EA. If you download (demo) -- you will see.
Weird. Which settings ? which EA, build ?
angevoyageur:
Are you using objects to check your trading signal ?
Are you using objects to check your trading signal ?
No, I am using:
high = iHigh(Symbol(),NULL, i); low = iLow(Symbol(),NULL, i);
//+------------------------------------------------------------------+ //| Get Low for specified bar index | //+------------------------------------------------------------------+ double iLow(string symbol,ENUM_TIMEFRAMES timeframe,int index) { double low=0; ArraySetAsSeries(Low,true); int copied=CopyLow(symbol,timeframe,0,Bars(symbol,timeframe),Low); if(copied>0 && index<copied) low=Low[index]; return(low); } //+------------------------------------------------------------------+ //| Get the High for specified bar index | //+------------------------------------------------------------------+ double iHigh(string symbol,ENUM_TIMEFRAMES timeframe,int index) { double high=0; ArraySetAsSeries(High,true); int copied=CopyHigh(symbol,timeframe,0,Bars(symbol,timeframe),High); if(copied>0 && index<copied) high=High[index]; return(high); }
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hi everyone,
If visualization is not checked in strategy tester - there is no trading (EA). If checked then it is working fine. This makes me scratch my head.
Any ideas?