Page 70 of 183
Re: Trend Indicators for MT4
Posted: Thu Mar 11, 2021 4:05 am
by 太虚一毫
mrtools wrote:Sat Jun 30, 2018 3:42 am
Yeah your right added the arrow option.
ptl 2.08 histo (alerts + lines + arrows) The arrow size cannot be adjusted, please change it. Thanks a lot!
Re: Trend Indicators for MT4
Posted: Thu Mar 11, 2021 4:25 am
by mrtools
太虚一毫 wrote:Thu Mar 11, 2021 4:05 am
ptl 2.08 histo (alerts + lines + arrows) The arrow size cannot be adjusted, please change it. Thanks a lot!
Try.
Re: Trend Indicators for MT4
Posted: Thu Mar 11, 2021 12:37 pm
by 太虚一毫
mrtools wrote:Thu Mar 11, 2021 4:25 amTry.
Lines 233 and 234 are "alarm text", right? I think these two strings of text are written in reverse, "trend changed to up" should be on the back line, and "trend changed to down" should be on the front line. I don't know, right?
Re: Trend Indicators for MT4
Posted: Thu Mar 11, 2021 1:35 pm
by mrtools
太虚一毫 wrote:Thu Mar 11, 2021 12:37 pm
Lines 233 and 234 are "alarm text", right? I think these two strings of text are written in reverse, "trend changed to up" should be on the back line, and "trend changed to down" should be on the front line. I don't know, right?
Yes try changing
Code: Select all
if (trena[whichBar]== 1) doAlert(whichBar,"trend changed to up");
if (trena[whichBar]==-1) doAlert(whichBar,"trend changed to down");
to
Code: Select all
if (trena[whichBar]== -1) doAlert(whichBar,"trend changed to up");
if (trena[whichBar]== 1) doAlert(whichBar,"trend changed to down");
Re: Trend Indicators for MT4
Posted: Sat Mar 20, 2021 10:12 am
by mrtools
太虚一毫 wrote:Fri Mar 19, 2021 7:04 am
Ask the teacher to add (alerts + lines + arrows) to this great work (Smoothed repulse), arrows are displayed in the main chart. Boundless merit!
Added alerts and arrows.
Re: Trend Indicators for MT4
Posted: Sat Mar 20, 2021 8:52 pm
by 太虚一毫
mrtools wrote:Sat Mar 20, 2021 10:12 am
Added alerts and arrows.
Boundless merit! Thanks a lot!
Re: Trend Indicators for MT4
Posted: Wed Mar 24, 2021 12:49 pm
by ggtrador
mrtools wrote:Thu Mar 11, 2021 4:25 amTry.
Mr. Tools, is there any way to make PTL-2.09 Histo choosable symbol? I don't need main window arrows or lines if they get in the way.
Re: Trend Indicators for MT4
Posted: Thu Mar 25, 2021 3:11 am
by mrtools
ggtrador wrote:Wed Mar 24, 2021 12:49 pm
Mr. Tools, is there any way to make PTL-2.09 Histo choosable symbol? I don't need main window arrows or lines if they get in the way.
This version seems to be working.
Re: Trend Indicators
Posted: Thu Mar 25, 2021 6:05 am
by colorwind
mrtools wrote:Tue Jun 13, 2017 1:58 am
This is price channel stop using the new format, indicator is mtf with alerts and is using the 30+ prices in it's calculation.
Hello experts:
This indicator works fine on current time frame. But in MTF (like 5M on 1M chart), the signal REPAINTS. Can you please take a look and make it non-repaint, thanks.
Re: Trend Indicators
Posted: Thu Mar 25, 2021 6:22 am
by kvak
colorwind wrote:Thu Mar 25, 2021 6:05 am
Hello experts:
This indicator works fine on current time frame. But in MTF (like 5M on 1M chart), the signal REPAINTS. Can you please take a look and make it non-repaint, thanks.
Hi,it is normal in mtf mode.
For example you use 1hour mtf in 15 min chart. You have 4 time chance to change direction,up/down.But after 1hour candle close,its no repaint.....