Forum

Signal arrow printing on wrong place.

Hi All, we are trying to create an EA using some strategy with Bollinger band indicator. we are showing up and down arrow on candle sticks when candle sticks values goes out of Bollinger band upper line. it is working correctly on most of the candle stick but on few candle sticks it is showing

Increase decimal values till 6, return ed from double High[]/Low[].

Hi I am using High[] and low[] calls. it returns double value till decimal values 4. I want the the return values til decimal value '6'. Please help me regrading this ASAP

Regarding Bollinger bands and super signal channel.

Hi i am trying to generate he alert and draw the arrows on the chart on some specific conditions. but facing some issues when super signal channel lies under the upper and lower bollinger bands . at that time i don't want to show the arrow for sale and buy. But it shows the arrows. what should i do

How to create EA using all indicators like OBV, MFI, CCI, RSI, Signals.

Hi All, I want to create an EA which have all access of the data from the indicators and use the strategy of BO. Code: void OnTick() { string signal = ""; double RSIValue = iRSI(_Symbol, _Period,14,PRICE_CLOSE,0); if(RSIValue<30) { signal = "buy"; } if(RSIValue > 70)