I would like to have same studies price % change and Volume % change over different periods (circled in Red color) shown in First screen shot from Schwab Platform, to be available in Tradestation Position tab or in Radar screen. I asked the question in TS EasyLangauge forum, but i thought someone can help here. Please click on images to see fonts clearly . Thank you
You'd better write customized indicators in EasyLanguage to achieve this. EL for these indicators should be pretty simple.
I think someone has writtemn EL code for them already, but it's strange that these EL studies are not implimented inside TS 10 plateform
Just use the generic %Change which is there and change the input for the data length required. It is under Inputs when you are adding it. { Search Tag: WA-%Chg } { Note: The colors and alerts in this indicator have been written assuming that the indicator will be used as a trend indicator, as opposed to countertrend indicators such as RSI and Stochastics. } inputs: Price( Close ) [ DisplayName = "Price", ToolTip = "Enter an EasyLanguage expression to use in the percentage change calculation."], Length( 14 ) [ DisplayName = "Length", ToolTip = "Enter number of bars over which to calculate percentage change."], Let me know if this is not clear.