Is there any way to know if RSI is uptrend or downtrend? #900
-
Hi there, if it is continues uptrend like 40 -> 45 -> 50 -> 55 -> 58 -> 60 then its easy to figure out , it is uptrend Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
There's probably a few concepts you can try. Here's some random thoughts: // average directional index
var results = quotes
.GetRsi(..)
.GetAdx(..);
// slope of smoothed RSI
var results = quotes
.GetRsi(..)
.GetAlma(..)
.GetSlope(..); |
Beta Was this translation helpful? Give feedback.
There's probably a few concepts you can try. Here's some random thoughts: