プラットフォームユーザーの要請により,FMZは現在 TradingView の Pine 言語機能ライブラリと互換性があり,安定バージョンに入りました.
言語機能の完全なサポートを提供する継続的なプロセスであり,この公開バージョンはユーザーテストのために事前に利用可能になります.
その後,FMZはTradingViewのPine言語の機能ライブラリをサポートし,改善し続けます.必要に応じて,この戦略についてコメントを残してください.
注: 定義されていない変数に出くわす場合は,この属性がサポートされていないことが証明されます. 関連する呼び出しを削除するか,問題を解決するために技術者に連絡する作業命令を送ることができます.
/*backtest start: 2022-08-17 08:00:00 end: 2024-08-29 08:00:00 period: 1d basePeriod: 1d exchanges: [{"eid":"Binance","currency":"BTC_USDT"}] */ strategy("supertrend", overlay=true, default_qty_type = strategy.percent_of_equity, default_qty_value = 50) [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()
ストーカー同通貨,異なる取引所より対を同期することをサポートする?例えば,exchange[0].Sell? exchaneg[1].Sell: na
ほらピンスクリプトは微信の通知機能を実現できるのか?
ワング3602000Pythonの発明家たちは,PINEを少し理解していない. 彼らはみんなPINEがPYTHONよりも簡単だと言う. 超トレンドの多種性.
ワング3602000この戦略が多通貨化に どう繋がるのか?
サイファー48パイン言語のチュートリアルを作れるか?
レファルセン牛牛牛
夏はあなたを打たない 这个下单数量也是通过strategy.entry的qty参数调整吗?
ゼロ3192発明家たちは強くなっています
クンフェン91この戦略はリアルディスクに直行できます.
発明者の量化https://www.fmz.com/doc/9315#request.security は,K線と対比し,深さは対比できない.
発明者の量化@は runtime.log の後に追加できますが,現在ではアプリに通知するだけです.
発明者の量化Pineは複数の通貨をサポートしません.
発明者の量化記録中です. 文書はこちら https://www.fmz.com/doc/9315で確認できます.
発明者の量化インターフェースのオプションのパラメータです.