検索
プロダクト
コミュニティ
マーケット
ニュース
ブローカー
詳細
JA
始めましょう
コミュニティ
/
アイデア
/
Flyup
Vietnam Index
Flyup
hoatigon.757の投稿
フォロー
フォロー
2023年10月21日
0
2023年10月21日
Pine Script®
RSIExit = input(55, "RSI Exit")
RSILength = input(4, "RSI Length")
testPeriod() =>
time >= testPeriodStart and time <= testPeriodStop ? true : false
longSMA = sma(close, 200) // 200-day moving average
rsi = rsi(close, RSILength) // relative strength indicator with custom length
longCondition = close > longSMA // closing price is above 200-day sma
if longCondition and testPeriod()
strategy.entry("CALL", strategy.long, 100, when=rsi <= RSIEntry)
strategy.close("CALL", when=rsi >= RSIExit)
Trend Analysis
hoatigon.757
フォロー
免責事項
これらの情報および投稿は、TradingViewが提供または保証する金融、投資、取引、またはその他の種類のアドバイスや推奨を意図したものではなく、またそのようなものでもありません。詳しくは
利用規約
をご覧ください。