無料でロボットをダウンロードする方法を見る
Twitter上で私たちを見つけてください。
私たちのファンページに参加してください
興味深いスクリプト?
それではリンクにそれを投稿してください。-
他の人にそれを評価してもらいます
記事を気に入りましたか?MetaTrader 5ターミナルの中でそれを試してみてください。
インディケータ

Recursive Moving Average - MetaTrader 4のためのインディケータ

ビュー:
6134
評価:
(23)
パブリッシュ済み:
2022.03.16 19:20
アップデート済み:
2022.03.17 20:33
このコードに基づいたロボットまたはインジケーターが必要なら、フリーランスでご注文ください フリーランスに移動

Recursive Moving Average calls itself a number of times in order to reach the appropriate smoothing. For  instance DEMA and TEMA indicators are recursive exponential moving averages.  The goal is to remove the loop limit while still running fast. In addition a trigger line provides the trading signal.

Parameters define:

  • regular period
  • number of iterations: the higher the smoother
  • smoothing method: exponential or smoothing only in order to keep it fast
  • optional drawing of an arrow at signal




It sports two features_

  • the trigger line: it  equals average sum of smoothing iterations, the crossing of both lines signals a trade
  • Optional drawing of arrow at signal.

As a rule of thumb, parameters should not overwhelm the chart with signals. This version handles open bar prices only.




    MA Angle MA Angle

    Not sure if anyone need this. Just showing the angle of the MA of current and adjacent candle.

    Adaptive momentum oscillator idea from David Varadi. Adaptive momentum oscillator idea from David Varadi.

    Adaptive momentum oscillator idea from David Varadi.

    Simple Slope Oscillator Normalized with symbol overlay for MT4 Simple Slope Oscillator Normalized with symbol overlay for MT4

    Simple Slope Oscillator Normalized with symbol overlay for MT4

    Chaikin Oscillator smoothed for MT4 Chaikin Oscillator smoothed for MT4

    Chaikin Oscillator with smoothing option.