CYBERUSDT戦、一歩遅かった
Pine Scriptで仮想通貨自動売買の色々思案しててちょうどいいタイミングで稼働させた。
画像の矢印がとれればかなり利益がでたんですが、一歩遅かった。BOTを調整していざロットを大きくしたのが二回目の大きな下落のあとでした。
祭りは収束していき、早朝になると出来高が消えてヨコヨコになってしまった。
次に期待しましょう。
反省してJOEUSDTのBOTを作りました。
//@version=5
strategy("ChannelBreakOutStrategy", overlay=true,calc_on_every_tick=true)
length = input.int(title="Length", minval=1, maxval=1000, defval=30)
upBound = ta.highest(high, length)
downBound = ta.lowest(low, length)
plot(upBound)
plot(downBound)
A = time > timestamp("GMT+6", 2023, 01, 01, 09, 30)
if (not na(close[length])) and A
strategy.entry("ChBrkLE", strategy.long, stop=upBound + syminfo.mintick, comment="ChBrkLE")
if A
strategy.entry("ChBrkSE", strategy.short, stop=downBound - syminfo.mintick, comment="ChBrkSE")
JOEUSDT15分足チャネルブレイクアウト期間30
これで稼働させてみます。
儲かるかな?
いいなと思ったら応援しよう!
よろしければサポートお願いします! いただいたサポートはクリエイターとしての活動費に使わせていただきます!