Forum

One Buffer Per Day

I have an indicator which gives one signal Down Buffer... I wish to only give signal once per day... Like after the first signal it will not paint any signal for the rest of the day! I have tested with below code it's now not painting at all? int day = 0 ; // this goes in OnInit() //here goes my

Need Help With Showing Text On Chart

Please See My Screenshots.... In My Indicator Texts Are Being Shown Using the Comment function ... See my second attached pic... but what i want is show those texts content something like attached pic #1 I mean what i got is Comment function texts properties can't be changed... like font size or

How to Style Comment function Texts

I have added comments texts using the Comment function ... see my screenshot... i want to style it eg: make the font size more bigger?? Can i change the background color of those texts as well as text color

How To Track Indicator Signals & Check For Potential Profit

I have an Indicator which gives BUY & SELL signals ... The Indicator is for Binary Options... Indicator Gives Signal & I Trade On the Next Candle... See My Attached Screenshot... What i want is when the indicator gives a signal (sell or buy) i want to check programmatically if the next candle

How to check last generated Arrow buffer candle count...

I have developed this indicator which generates Arrow buffer... i want to check if last buffer call was before 5 candles ... see my attached screenshot... what i want is to check if previous generated buffer was > last 5 candles... how do i check that

Negative-Positive MACD value check

I need to check if MACD value is negative or positive... iMACD ( NULL , PERIOD_CURRENT , 12 , 26 , 9 , PRICE_CLOSE , MODE_MAIN, i) how do i do that? what function available or what custom code do you suggest