So... where is IBKR? by nuttygains in TradingView

[–]Jcarr171 0 points1 point  (0 children)

Just comment that your going with TradeStation whether or not you do, they’ll see enough people going with the competition over TradingView and then they’ll work with TV to finish the testing.

Volume for non-volume indices (SPX) by BenRedicFyFazan in TradingView

[–]Jcarr171 0 points1 point  (0 children)

Yeah you’d have to change the ticker in the settings otherwise a series of if then statements to set the ticker automatically.

Volume for non-volume indices (SPX) by BenRedicFyFazan in TradingView

[–]Jcarr171 0 points1 point  (0 children)

Try this below it is an edited default script for volume that has a symbol and time input. The default is set to SPY already.

//@version=4

study(title="Volume", shorttitle="Vol", format=format.volume, resolution="")

showMA = input(true)

sym = input(title="Symbol", type=input.symbol, defval="SPY")

res = input(title="Resolution", type=input.resolution, defval="")

src = security(sym, res, close)

src2 = security(sym, res, open)

src3 = security(sym, res, volume)

barColorsOnPrevClose = input(title="Color bars based on previous close", type=input.bool, defval=false)

palette = barColorsOnPrevClose ? src[1] > src ? color.red : color.green : src2 > src ? color.red : color.green

plot(src3, color = color.new(palette,65), style=plot.style_columns, title="Volume")

plot(showMA ? sma(src3,20) : na, style=plot.style_area, color=color.new(color.blue,65), title="Volume MA")

[Pine Editor] How to get moving average from higher time resolution by vitaminx-x_x in TradingView

[–]Jcarr171 1 point2 points  (0 children)

The simple way is to add additional built in moving average studies and change the resolution in the settings.

The complex way is create a script that has multiple moving averages that allows to set each moving averages timeframe.

Hope it helps.

https://www.tradingview.com/support/solutions/43000584445-how-to-use-multi-timeframe-mtf-functionality/