grr

TradingView

TradingView Test(TEMP)

Long Entry Only PSAR 次の足でロングエントリー //@version=3 strategy(title = "Buy Only",overlay=true) psar = sar(0, 0.02, 0.02) strategy.entry("L", true, when = (psar < high), stop=psar) strategy.close("L", when = (psar > low)) plot(psar,li…

TradingView Long Entry Only

Long Entry Only //@version=3 strategy(title = "Buy Only",overlay=true) buy = crossover(sma(close, 10), sma(close, 100)) sell = crossunder(sma(close, 10), sma(close, 100)) strategy.entry(id = "L", long = true, when = buy ) strategy.close(id…

TradingView Scripts(TEMP)

Sunday BgColor study("Sunday", overlay = true) //bgcolor(dayofweek == 1 ? #aaaaaa : dayofweek == 7 ? #aaaaaa : na, transp = 90) bgcolor(dayofweek == 1 ? #aaaaaa : na, transp = 80)