資源の読み込みに... 荷物...

パイン 言語

PINE言語のスクリプトをサポートし,対応しています.Trading View. PINE言語は,バックテストされた,ライブトレード指標と戦略を作成するための軽量で強力な戦略設計プログラミング言語で,PINEスクリプトを10万以上作成した繁栄しているフォーラムです. ユーザーは幅広い技術分析と取引戦略を簡単にアクセスし,適用できます. ユーザーはコミュニティスクリプトの助けで取引アイデアを迅速に実装することができ,ゼロからコードを書く必要性をなくし,開発時間を大幅に短縮します. 経験豊富なトレーダーと初心者が異なる技術指標,戦略,プログラミングコンセプトを学び理解するのに役立ちます.

パイン言語戦略例:スーパートレンド戦略

strategy("supertrend", overlay=true)

[supertrend, direction] = ta.supertrend(input(5, "factor"), input.int(10, "atrPeriod"))

plot(direction < 0 ? supertrend : na, "Up direction", color = color.green, style=plot.style_linebr)
plot(direction > 0 ? supertrend : na, "Down direction", color = color.red, style=plot.style_linebr)

if direction < 0
    if supertrend > supertrend[2]
        strategy.entry("entry long", strategy.long)
    else if strategy.position_size < 0
        strategy.close_all()
else if direction > 0
    if supertrend < supertrend[3]
        strategy.entry("entry short", strategy.short)
    else if strategy.position_size > 0
        strategy.close_all()
MyLanguage は ブロック式可視化