looks good
zzuegg:
looks good
looks good
Thanks a lot!

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 am trying to write indicator that shows Daily EMA disregarding to current chart timeframe. And i found that i have no idea how to accomplish it.
Code:
for(int i=0; i<limit; i++)
{
ExtMapBuffer1[i]=iMA(NULL,PERIOD_D1,9,0,MODE_EMA,PRICE_CLOSE,i);
}
Does not work, because BarNumber (variable i) has a different meaning in current timeframe and D1.
Any help?