My idea is like multi time frame analysis using ema, VWAP in watchlist column
1. if VWAP < close then statement show " Bullish " else VWAP > close then statement show " Bearish"
AssignBackgroundColor(if close > vwap then color.dark_green else color.dark_red);
2. if close > 9 EMA (5 min) then statement show " bullish" else close < 9 ema ( 5 min) then statement "bearish"
AssignBackgroundColor(if close > EMA then color.dark_green else color.dark_red);
3. if 16 ema ( 60 min chart) cross above 72 EMA (60 min chart) then statement show " bullish" else 16 EMA cross below 72 ema then statement "bearish"
AssignBackgroundColor(if 16 ema cross above> 72 ema then color.dark_green else 16 ema cross below 72 ema then color.dark_red);
Please help!!!
1. if VWAP < close then statement show " Bullish " else VWAP > close then statement show " Bearish"
AssignBackgroundColor(if close > vwap then color.dark_green else color.dark_red);
2. if close > 9 EMA (5 min) then statement show " bullish" else close < 9 ema ( 5 min) then statement "bearish"
AssignBackgroundColor(if close > EMA then color.dark_green else color.dark_red);
3. if 16 ema ( 60 min chart) cross above 72 EMA (60 min chart) then statement show " bullish" else 16 EMA cross below 72 ema then statement "bearish"
AssignBackgroundColor(if 16 ema cross above> 72 ema then color.dark_green else 16 ema cross below 72 ema then color.dark_red);
Please help!!!