If you want to use the shadows of the HA candle, then you should be using iCustom() with the HA indicator.
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
I can't write the service with the shadow of heiken ashi can someone help me write it?
{ double LowerBB =iBands(Symbol(),timeframe,PeriodBollBand,devBollBand,0,0,MODE_LOWER,1); double UpperBB =iBands(Symbol(),timeframe,PeriodBollBand,devBollBand,0,0,MODE_UPPER,1); if ((High[0] + xpip)>UpperBB){ OpenSell(lotSize,nMagic,3.0); Comment("Sell"); } if ((Low[0] - xpip)< LowerBB){ OpenBuy(lotSize,nMagic,3.0); Comment("Buy"); } }