Can anyone pls help.
My trigger is also only showing sell triggers and not Buy .
When the iEnvelope is triggered, I want to confirm the trigger by counting 1 full candle in the same direction eg( Buy trigger, followed by a full Buy Candle following.)
if((high>lowerEnvel && close<lowerEnvel )&& (previous candle close>current candle close) {signal=OP_SELL;} if((low<upperEnvel && close>upperEnvel)&&(previous candle close>current candle close)
i only want the trigger to happen when the next candle is going in the same direction,
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,
need a little help.
i have an indicator that seems to be working fine, i just want to add an extra filter to the trigger..
I have Envelope and would like to add the bar count and price open/close eg..Bear or Bull candle..
I have the MA Filter working (kinda), I seem to be only getting the BUY signals and not the SELL
BarsCount is what I am trying to code as well.
When the iEnvelope is triggered, I want to confirm the trigger by counting 1 full candle in the same direction eg( Buy trigger, followed by a full Buy Candle following.)
I hope that makes sense..
Any help would be gratefully appreciated.