scvidar 87 posts msg #149848 - Ignore scvidar |
12/10/2019 5:40:02 PM
Can anyone tell me how to create a custom ratio of two items? I have tried looking and can't find anything.
|
xarlor 581 posts msg #149849 - Ignore xarlor |
12/10/2019 5:57:21 PM
Can you provide an example of what you're asking?
|
scvidar 87 posts msg #149854 - Ignore scvidar |
12/11/2019 10:29:40 AM
say gld to spy ratio
|
scvidar 87 posts msg #149859 - Ignore scvidar |
12/11/2019 3:37:13 PM
Looks like Four already did it couple years ago, but thanks anyway.
.
symlist(gld,spy)
set{g,ind(gld,close)}
set{s,ind(spy,close)}
set{r,g/s}
add column r{ratio of GLD to SPY}
add column g
add column s
draw r
|