ptl 2.08 histo (alerts + lines + arrows) The arrow size cannot be adjusted, please change it. Thanks a lot!mrtools wrote:Sat Jun 30, 2018 3:42 am Yeah your right added the arrow option.
Re: Trend Indicators for MT4
692Try.太虚一毫 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!
Re: Trend Indicators for MT4
693Lines 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?mrtools wrote:Thu Mar 11, 2021 4:25 amTry.
Re: Trend Indicators for MT4
694Yes try changing太虚一毫 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?
Code: Select all
if (trena[whichBar]== 1) doAlert(whichBar,"trend changed to up");
if (trena[whichBar]==-1) doAlert(whichBar,"trend changed to down");
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
695Added alerts and arrows.太虚一毫 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!
Re: Trend Indicators for MT4
696Boundless merit! Thanks a lot!mrtools wrote:Sat Mar 20, 2021 10:12 am Added alerts and arrows.
Re: Trend Indicators for MT4
697Mr. 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.mrtools wrote:Thu Mar 11, 2021 4:25 amTry.
Re: Trend Indicators for MT4
698This version seems to be working.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.
Re: Trend Indicators
699Hello experts: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.
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
700Hi,it is normal in mtf mode.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.
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.....