You doing well Lekkim and appreciate your work. Machine just likes to pass youtube strategies as his own and hes still unprofitable
3
Please suggest a simple & effective Method/System of "Trading System" Forum to newbie 182 replies
HYBRID: trading system within a trading system 31 replies
Day Trading system - Simple system to make money 51 replies
London Open Trading System Test 20 replies
Trapping System: Way to Fully-Automated Trading System 47 replies
//@version=5
indicator('Open Interest', overlay = false, timeframe = "", format = format.volume)
// Symbol handling
sym = input.string('BINANCE', 'Exchange') + ':'
usdt_ticker = str.contains(syminfo.ticker, 'USDC') ? str.replace(syminfo.ticker, 'USDC', 'USDT') :
str.contains(syminfo.ticker, 'USD') and not str.contains(syminfo.ticker, 'USDT') ? str.replace(syminfo.ticker, 'USD', 'USDT') :
syminfo.ticker
is_perpetual = str.endswith(syminfo.ticker, 'P')
oi_ticker = sym + usdt_ticker + (is_perpetual ? '_OI' : '.P_OI')
[oi_o, oi_h, oi_l, oi_c] = request.security(oi_ticker, timeframe.period, [open, high, low, close], ignore_invalid_symbol=true)
c = nz(oi_c, 0)
OI = c
NV = c * close
plot(OI, color = color.rgb(0, 78, 9), style = plot.style_areabr, title = "Open Interest")
plot(NV, color = color.orange, linewidth = 2, title = "Notional Value of O.I.") DislikedI prefer the original, classic, old code and setup... Which is also the most simple one Simply add this code to PineEditor in TradingView twice and merge it together, then add red ema1 as price line and boom! You have a great setup and use my OI theory and trade each time a 'Traffic Light Signal' - Red on top, orange middle and green bottomIgnored
Disliked{quote} Thanks brother for sharing. It appears to be promising, but i am yet to set it up on Tradingview as am having issues adding the price line i.e EMA1. Please how do i add the the price line on basic account or do I need to upgrade to premium before i can add the third indicator? See the attached Is there something am not doing right? {image}Ignored