Hi Ogee, I have tried with the different Renko generator and the problem is the same. I know from experience that some indicators have to be coded in a different way to not have this problem.Ogee wrote: Tue Aug 24, 2021 2:38 am Hi, you sometimes get signal indicators doing that on Renko charts if using very small brick sizes, also some Renko chart builders are better than others for displaying signal indicators, maybe try a different one.
Re: MT4 Indicator requests and ideas
13612maxus182 wrote: Tue Aug 24, 2021 5:22 pm Hi Ogee, I have tried with the different Renko generator and the problem is the same. I know from experience that some indicators have to be coded in a different way to not have this problem.
Re: MT4 Indicator requests and ideas
13613i am struggling to find lsma indicator like trading view for mt4 with all 3 parameters. can anyone please help?
Code: Select all
study(title = "Least Squares Moving Average", shorttitle="LSMA", overlay=true, resolution="")
length = input(title="Length", type=input.integer, defval=25)
offset = input(title="Offset", type=input.integer, defval=0)
src = input(close, title="Source")
lsma = linreg(src, length, offset)
plot(lsma)
Don't fight the market let it reveal its tricks, then strike with precision. 
Re: MT4 Indicator requests and ideas
13614I don’t have a renko chart, so I don’t know which indicator is better, try it yourselfOgee wrote: Tue Aug 24, 2021 6:26 am I wasn't looking at repaint so don't know but was looking at the multiple repeating arrows, often if you increase the brick size it goes away so just stamps 1 arrow.
these indicators should be together with the main arrow in the indicators folder
Re: MT4 Indicator requests and ideas
13615As in the pic I posted there was no repeating arrow problem, the brick size was 5 points. But I've seen a few indicators that will start that continuous repeating of arrows problem if the brick size is cut to 3 points or less.blonde wrote: Wed Aug 25, 2021 1:05 am I don’t have a renko chart, so I don’t know which indicator is better, try it yourself
these indicators should be together with the main arrow in the indicators folder
Re: MT4 Indicator requests and ideas
13616Try here Average indicatorsujtrader wrote: Wed Aug 25, 2021 12:46 am i am struggling to find lsma indicator like trading view for mt4 with all 3 parameters. can anyone please help?
Code: Select all
study(title = "Least Squares Moving Average", shorttitle="LSMA", overlay=true, resolution="") length = input(title="Length", type=input.integer, defval=25) offset = input(title="Offset", type=input.integer, defval=0) src = input(close, title="Source") lsma = linreg(src, length, offset) plot(lsma)
Re: MT4 Indicator requests and ideas
13617barsToDisplay=0 all arrows are visibleOgee wrote: Wed Aug 25, 2021 1:29 am As in the pic I posted there was no repeating arrow problem, the brick size was 5 points. But I've seen a few indicators that will start that continuous repeating of arrows problem if the brick size is cut to 3 points or less.
barsToDisplay=1 only one arrow on the last bar
barsToDisplay=2 only one arrow on the last 2 bar
pr FollowLine_v1.5_5 -removes 5 arrows after the first arrow
write the result did the indicators fit?
Re: MT4 Indicator requests and ideas
13618Hi guys
has anyone come across an indicator that draws a histogram of either red or green buffers if the price is above or below the previous days 9pm open price?
has anyone come across an indicator that draws a histogram of either red or green buffers if the price is above or below the previous days 9pm open price?
Re: MT4 Indicator requests and ideas
13619I've been paper trading this TV indi for months now and it seems to be quite accurate (60-70% win rate) - if anyone can code it from Pine to MT4 and add alerts it looks like it has a lot of potential. Someone actually already coded a similar MT4 indicator but is quite basic and not user friendly. The TV version also had a lot of other cool options.
TV indi - DIvergence for many indicators V4
MT4 indi - DIvergence for many indicators
TV indi - DIvergence for many indicators V4
MT4 indi - DIvergence for many indicators
Re: MT4 Indicator requests and ideas
13620Hi Ogee, I have finally figured out what was the problem! My chart has a limit of 3000 bars, and the indicator is set to look at the last 10000 bars - when I reduce it to 3000 then everything works properly.