Monthly Archives: February 2022

Pine script – function returns values

//@version=4 study(“COT weekly change (makuchaku)”) isCommodity = true symbol = “xx” float oi = na float asset_mgr = na cot_data_financials(symbol) => oi = 1 asset_mgr = 2 [oi, asset_mgr] cot_data_commodities(symbol) => oi = 3 asset_mgr = 4 [oi, asset_mgr] // … Continue reading

Posted in Uncategorized | Comments Off on Pine script – function returns values

Labu/labd, tecl/tecs, webs/webl and webs/webs

$ll labu $ll labd start lll labd labu 30 and 10 and 5 to check

Posted in Uncategorized | Comments Off on Labu/labd, tecl/tecs, webs/webl and webs/webs

Histogram

//@version=4 study(title=”myHist”,overlay=true) plot(close) histLine=(hour==7 and minute==0) or hour==9 and minute==30 or hour==16 and minute==0 or hour==20 and minute==0 ?1:0 plot(histLine, color=color.black, style=plot.style_histogram,linewidth=1)

Posted in Uncategorized | Comments Off on Histogram

RSI 14

//@version=4 study(title=”RSI”) myValue=rsi(close,14) a=plot(50) b=plot(myValue) col=myValue>50?color.green:color.red fill(a,b,color=col)

Posted in Uncategorized | Comments Off on RSI 14

WPR 400 for 1m, 3m, 5m, 15m

//@version=4 study(title=”WPR”) myValue=wpr(400) //define 2 plots and fill with color with based line a=plot(-50) b=plot(myValue) col=myValue>-50?color.green:color.red fill(a,b,color=col)

Posted in Uncategorized | Comments Off on WPR 400 for 1m, 3m, 5m, 15m

CEI info

Use Alert-3m 65/35 RSI, 15 minutes, buy at low https://youtu.be/-aP_tXSwhD4 $CEI is still at this levels because the general market sentiment is negative at the moment, and some wales are refraining the overall risk accordingly. But believe me, wales have … Continue reading

Posted in CEI | Comments Off on CEI info