
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
Mrtools
is there any chance you could add a trend buffer to the Heikin Ashi??
Ray
PS; Mrtools I've been screwing around wih this trend for 2 days now AND I FINALLY GOT IT TO WORK, THANKS
RAY
Adaptive T3 Heiken Ashi mtf and alerts and Adaptive T3 Vhf. Thanks Mladen for the help. On the picture its h4 heiken on h1 chart and about the vhf check out where the highest peaks are
Mrtools
is there any chance you could add a trend buffer to the Heikin Ashi??
Ray
PS; Mrtools I've been screwing around wih this trend for 2 days now AND I FINALLY GOT IT TO WORK, THANKS
RAYSorry for my late response i was just getting ready to post it and pulled up your quote, and saw you figured it out. What i did was removed the arrows buffers and replaced with the trend buffer, figured you wanted to use in Ea so arrows wouldn't be needed. Anyway glad you got it to work.
Mrtools
I was a little to quick with my "ITS working". It doesn't work in the MTF mode. Could you check it out and show me the error of my ways??
Thanks
Ray
Sorry for my late response i was just getting ready to post it and pulled up your quote, and saw you figured it out. What i did was removed the arrows buffers and replaced with the trend buffer, figured you wanted to use in Ea so arrows wouldn't be needed. Anyway glad you got it to work.
Mrtools
I was a little to quick with my "ITS working". It doesn't work in the MTF mode. Could you check it out and show me the error of my ways??
Thanks
RayRay looks like its fixed and put it on a chart and the mtf and alerts are working, removed one of the extra call outs using the trend buffer, then added the trend buffer to the mtf call out, you were very close!
Mrtools
Thank You! I get Close but no cigar.
Ray
Ray looks like its fixed and put it on a chart and the mtf and alerts are working, removed one of the extra call outs using the trend buffer, then added the trend buffer to the mtf call out, you were very close!
This one is not a revolutionary indicator, but it is more an "eye opener"
To conclude : here is a comparison of default 1 (PowerSlow parameter) 2 (Powerfast parameter) with default metatrader built in momentum indicator. Those powers are also corresponding to what is known as Jurik velocity indicator
PPS: when comparing this indicator to metatrader versions of "velocity" bare in mind that all the velocity indicators for metatrader I have saw are calculating period+1 momentum and not a period momentum as they should
Mrtools or mladen
I'm working with Basket indicators. How can I get the Alert to show the "Close value" which as you can see is quite different from the normal "Bid".
Here is the code:
TimeToStr(TimeLocal(),TIME_SECONDS)," Heatmap Alert "+" Close -"+DoubleToStr(Close, Digits)+" FastMA -"+NormalizeDouble(ExtMapBuffer1,Digits)
+DoubleToStr(value,2)+" HeatMap Breakout---",doWhat);
if (alertsMessage) Alert(message);
if (alertsEmail) SendMail(StringConcatenate(Symbol(),"Ichimoku breakout "),message);
if (alertsSound) PlaySound("son*****7.mp3");See the attached chart
Thank you
Ray
traderduke ,
try "DoubleToStr(Close
[0]
, Digits)"my 2 cents... hope it will works...
Regards
Mrtools or mladen
I'm working with Basket indicators. How can I get the Alert to show the "Close value" which as you can see is quite different from the normal "Bid".
Here is the code:
TimeToStr(TimeLocal(),TIME_SECONDS)," Heatmap Alert "+" Close -"+DoubleToStr(Close, Digits)+" FastMA -"+NormalizeDouble(ExtMapBuffer1,Digits)
+DoubleToStr(value,2)+" HeatMap Breakout---",doWhat);
if (alertsMessage) Alert(message);
if (alertsEmail) SendMail(StringConcatenate(Symbol(),"Ichimoku breakout "),message);
if (alertsSound) PlaySound("son*****7.mp3");See the attached chart
Thank you
RayMrtools or mladen
I'm working with Basket indicators. How can I get the Alert to show the "Close value" which as you can see is quite different from the normal "Bid".
Here is the code:
TimeToStr(TimeLocal(),TIME_SECONDS)," Heatmap Alert "+" Close -"+DoubleToStr(Close, Digits)+" FastMA -"+NormalizeDouble(ExtMapBuffer1,Digits)
+DoubleToStr(value,2)+" HeatMap Breakout---",doWhat);
if (alertsMessage) Alert(message);
if (alertsEmail) SendMail(StringConcatenate(Symbol(),"Ichimoku breakout "),message);
if (alertsSound) PlaySound("son*****7.mp3");See the attached chart
Thank you
RayRay maybe try something like this, but not for sure.
double prc = iMA(Symbol(),0,1,0,MODE_EMA,PRICE_CLOSE,0);
prc1 = DoubleToStr(prc,Digits);
message = StringConcatenate(Symbol()," tf-",(Period())," at ",
TimeToStr(TimeLocal(),TIME_SECONDS)," Heatmap Alert at",+DoubleToStr(prc1, Digits)+," FastMA =
"+NormalizeDouble(ExtMapBuffer1,Digits)+,
+DoubleToStr(value,2)+, "HeatMap Breakout---",doWhat);
if (alertsMessage) Alert(message);
if (alertsEmail) SendMail(StringConcatenate(Symbol(),"Ichimoku breakout "),message);
if (alertsSound) PlaySound("son*****7.mp3");
brax64 & mrtools
The Close[0] fixed it.
Thanks you
Ray
traderduke ,
try "DoubleToStr(Close
[0]
, Digits)"my 2 cents... hope it will works...
Regards