Tony Stark
New member
Hey everyone could I be pointed in the right direction of what to do if an indicator already provided by TD Ameritrade is not working and the code seems fine by the functions still being provided and supposedly working on their site but even when I use the functions in my own edit version nothing happens.
Their Raw code :
Their Raw code :
Code:
#
# TD Ameritrade IP Company, Inc. (c) 2009-2020
#
declare lower;
input reverse = No;
def value = close(getSymbolPart(1)) / close(getSymbolPart(2));
plot Ratio = if reverse then 1 / value else value;
Ratio.SetDefaultColor(GetColor(1));
Last edited: