Page 1839 of 2170

Re: MT4 Indicator requests and ideas

Posted: Wed Apr 26, 2023 1:20 pm
by Chickenspicy
please help unbalance paranthesis

Re: MT4 Indicator requests and ideas

Posted: Wed Apr 26, 2023 1:40 pm
by Woodyz
Chickenspicy wrote: Wed Apr 26, 2023 1:20 pm please help unbalance paranthesis
Image
Is this ChatGPT generated code?...........because if so, I'm getting the same type of errors all the time. ask it to fix the errors and update the code etc but does not fix them & just end up going around in circles. Maybe it's just me.

Re: MT4 Indicator requests and ideas

Posted: Wed Apr 26, 2023 1:40 pm
by Chickenspicy
please help make work on renko chart its good arrow after bar close, thanks

Re: MT4 Indicator requests and ideas

Posted: Wed Apr 26, 2023 1:42 pm
by Chickenspicy
Woodyz wrote: Wed Apr 26, 2023 1:40 pm Is this chatgpt code?...........because if so, I'm getting the same type of errors all the time......
no its 4tf heikin ashi tryna make regular

Re: MT4 Indicator requests and ideas

Posted: Wed Apr 26, 2023 2:06 pm
by mrtools
Chickenspicy wrote: Wed Apr 26, 2023 1:20 pm please help unbalance paranthesis
Image
Looks like you didn't complete the iCustom call for the open, close, high, and low. Something like

Code: Select all

 iOpen(_Symbol,_Period,i); 
 iClose(_Symbol,_Period,i);  
then open<>close and then a

Code: Select all

 } 
bracket.

Re: MT4 Indicator requests and ideas

Posted: Wed Apr 26, 2023 2:10 pm
by mrtools
Chickenspicy wrote: Wed Apr 26, 2023 1:40 pm please help make work on renko chart its good arrow after bar close, thanks
Image
Need "LSMA_in_Color_2" and "TrendLinearReg" before anything can be done.

Re: MT4 Indicator requests and ideas

Posted: Wed Apr 26, 2023 2:14 pm
by mrtools
tkhanfx wrote: Wed Apr 26, 2023 7:35 am Yes i meant the arrow signals.. Thank you for the confirmation

Edit: so i missed something with my limited coding knowledge. The signal buffer value shows for just one candle, and does not carry over to the other bars. Would be a huge help if this could be modified. would be very grateful

Thank you
Not understanding!

Re: MT4 Indicator requests and ideas

Posted: Wed Apr 26, 2023 2:16 pm
by Chickenspicy
mrtools wrote: Wed Apr 26, 2023 2:10 pm Need "LSMA_in_Color_2" and "TrendLinearReg" before anything can be done.
my bad mrtools sorry

Re: MT4 Indicator requests and ideas

Posted: Wed Apr 26, 2023 4:20 pm
by Chickenspicy
mrtools wrote: Wed Apr 26, 2023 2:06 pm Looks like you didn't complete the iCustom call for the open, close, high, and low. Something like

Code: Select all

 iOpen(_Symbol,_Period,i); 
 iClose(_Symbol,_Period,i);  
then open<>close and then a

Code: Select all

 } 
bracket.
i have no idea i deleted some extra things
the open<>close part also gave erros
it compile only blank

Re: MT4 Indicator requests and ideas

Posted: Wed Apr 26, 2023 11:41 pm
by tkhanfx
mrtools wrote: Wed Apr 26, 2023 2:14 pm Not understanding!
My apologies.. so i intend to use the 'zero lag ema slow' as a filter and to use the signal buffer values and not the signal line itself.. but the signal arrow only shows it's value for the candle it appears on, the other bars until the trend changes show an empty signal value in the data window. so the modification am requesting is for the signal buffer value to show over all bars in the corresponding trend so these values can be referenced to in use for filtering

like for the other 'zero lag hull' version attached here which has a buffer value "1" when the trend is up or down

I hope i explained that well enough