Hausky

Hausky Simple MA Strategy EURUSD 1H

Here is my simple Moving Average crossover strategy for EURUSD 1H

オープンソーススクリプト

TradingViewの精神に則り、このスクリプトの作者は、トレーダーが理解し検証できるようにオープンソースで公開しています。作者に敬意を表します!無料で使用することができますが、このコードを投稿で再利用するには、ハウスルールに準拠する必要があります。 お気に入りに登録してチャート上でご利用頂けます。

免責事項

これらの情報および投稿は、TradingViewが提供または保証する金融、投資、取引、またはその他の種類のアドバイスや推奨を意図したものではなく、またそのようなものでもありません。詳しくは利用規約をご覧ください。

チャートでこのスクリプトを利用したいですか?
//@version=2
strategy("Hausky Simple MA Strategy", overlay=true)
fastLength = input(11)
slowLength = input(26)
price = close

mafast = sma(price, fastLength)
maslow = sma(price, slowLength)

if (crossover(mafast, maslow))
    strategy.entry("MA2CrossLE", strategy.long, comment="MA2CrossLE")
    strategy.exit("MA2CrossLE", profit = 1040, trail_points = 731) 

if (crossunder(mafast, maslow))
    strategy.entry("MA2CrossSE", strategy.short, comment="MA2CrossSE")
    strategy.exit("MA2CrossSE", profit = 1040, trail_points = 731) 

//plot(strategy.equity, title="equity", color=red, linewidth=2, style=areabr)