
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 All
I am starting to learn,so I am sorry if my questions are very basic.
1- I am trying a simple robot that should be only selling
double bid = SymbolInfoDouble(_Symbol,SYMBOL_BID);
double sl = bid + 1000000*SymbolInfoDouble(_Symbol,SYMBOL_POINT);
double tp = bid - 1000000*SymbolInfoDouble(_Symbol,SYMBOL_POINT);
trade.Sell(0.005,_Symbol,bid,sl,tp,"SELL");
In Backtest, I can see BUY trades open ????? Is that possible ?
2- ADX range in the below picture is around 40, MA around 836000 , How do intersect as they are big ifference between them ?
Is there a way to get intersect point ?