Re: ALMA Crossover Strategy

1842
global wrote: Tue Aug 24, 2021 4:53 am Hi erynade, I couldn't find all the indicators listed. Would you be so kind to package them all into a zip file with their mq4 source code if possible and include your template for the screenshot you posted. Your template looks great. Thanks.
hi global,

here is,


profit regards
erynade
These users thanked the author erynade for the post (total 7):
RomanUkraine, dwenblade, iPar, global, Mrs.Watanabe, mcmstar, mancangkul
Not too Fast, Not too Slow, "Safe and Profit"

Re: Moving Average indicators for MT4

1845
mrtools wrote: Mon Aug 23, 2021 4:10 am Have this version using a filter option(second picture) which has mtf already.
Dear mr.tools
Does TMA repaint!! viewtopic.php?f=579496&t=8414844&start=1814 ?
i would like to add BB channel and fitler BB arrows if its not repaint..
see snap[..

TMA HIGH LOW LINES
BAR CLOSE PRICE BREAKS OUTER CHANNEL below TMA high line - DOWN arrows
Attachments
"There is NO GOD higher than TRUTH" - Mahatma Gandhi


Re: Moving Average indicators for MT4

1846
sal wrote: Wed Aug 25, 2021 3:02 am Dear mr.tools
Does TMA repaint!! viewtopic.php?f=579496&t=8414844&start=1814 ?
i would like to add BB channel and fitler BB arrows if its not repaint..
see snap[..

TMA HIGH LOW LINES
BAR CLOSE PRICE BREAKS OUTER CHANNEL below TMA high line - DOWN arrows
Tma doesn't repaint, have this bands version with a choice of atr or standard deviation (Bollinger) bands.
These users thanked the author mrtools for the post (total 3):
太虚一毫, alexm, Jedidiah

Re: Moving Average indicators for MT4

1847
hey Mrtools, I am not coder but was researching i came to following code which is claming that producing same output as pinescript linreg


Code: Select all

// Working, exactly matches pinescript implementation

// time order of series: [t-0, t-1, t-2 ] // reverse for ease of use later
let close = [5609.7, 5655.7, 5749.6].reverse();

close = [25.500000, 26.921875,29.531250].reverse();

console.log(

  linreg(close, 3, 0)

);

function linreg(source, length, offset)
{
  let begin = 0, end = length-1;
  let sumX = 0.0;
  let sumY = 0.0;
  let sumXSqr = 0.0;
  let sumXY = 0.0;

  for (let i=0; i<length; ++i)
  {
    // must calculate across X-axis =>   x-3, x-2, x-1, x = 0
    // hence the quick and dirty reverse() above.

    let val = source[begin+i];
    let per = i + 1;
    sumX += per;
    sumY += val;
    sumXSqr += per * per;
    sumXY += val * per;
  }

  var m = (length*sumXY - sumX*sumY) / (length*sumXSqr - sumX*sumX);
  var b = (sumY/length) - (m*sumX)/length +m ;
  return b + m * (length - 1 - offset);
}
can we have this implemented in the indicator !lsma nrp you posted earlier mt4 ?

Re: Moving Average indicators for MT4

1848
mrtools wrote: Wed Aug 25, 2021 3:24 am Tma doesn't repaint, have this bands version with a choice of atr or standard deviation (Bollinger) bands.
mr. tools
Thanks for the indicator, but the my rules are not following with bands TMA.
can you please do help to add bb bands with trend arrows with TMA high low channel.!
"There is NO GOD higher than TRUTH" - Mahatma Gandhi

Re: Moving Average indicators for MT4

1849
tkhanfx wrote: Thu Aug 26, 2021 3:47 am Thank you for your timely reply Mr.Tools. I've found a version in the forums. would like to ask you to please add price and ma options. And the version i had posted had 2 signal input parameters, does that make a difference?
Added ma and price options. Please verify it works.
These users thanked the author mrtools for the post:
太虚一毫


Who is online

Users browsing this forum: akeo, ChatGPT [Bot], Facebook [Crawler], Majestic-12 [Bot], Yesfx and 77 guests