vkarthikeyenv:
Sorry but no! One reason is that it probably already exists!
Hi,
.. Can any body help me out in coding this.
I would do it like this:
double RSH_H1_0 = iRSI(0,PERIOD_H1,14,PRICE_TYPICAL,0);
double RSH_H1_1 = iRSI(0,PERIOD_H1,14,PRICE_TYPICAL,1);
double RSH_D1_0 = iRSI(0,PERIOD_D1,14,PRICE_TYPICAL,0);
double RSH_D1_1 = iRSI(0,PERIOD_D1,14,PRICE_TYPICAL,1);
double RSH_H4_0 = iRSI(0,PERIOD_H4,14,PRICE_TYPICAL,0);
double RSH_H4_1 = iRSI(0,PERIOD_H4,14,PRICE_TYPICAL,1);
if(RSH_H1_0 < RSH_H1_1 && RSH_D1_0 < RSH_D1_1 && RSH_H4_0 < RSH_H4_1) // down
{ show arrow, play sound, etc. }
vkarthikeyenv:
|
|

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,
I would like to create an indicator using RSI. The indicator should predict using 3 time frame viz, PERIOD_D1, PERIOD_4H, PERIOD_1H. An arrow should be formed in the chart window if all the 3 time frame indicate buy/sell. Can any body help me out in coding this.