You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Psychological Line indicator is the ratio of the number of
rising periods over the total number of periods.
https://library.tradingtechnologies.com/trade/chrt-ti-psychological-line.html
Formular:
* PSL = (Number of Rising Periods) / (Total Number of Periods) * 100
Example:
* `df['psl']` retrieves the PSL with default window 12.
* `df['psl_10']` retrieves the PSL with window 10.
* `df['high_12_psl']` retrieves the PSL of high price with window 10.
The Psychological Line indicator is the ratio of the number of
rising periods over the total number of periods.
https://library.tradingtechnologies.com/trade/chrt-ti-psychological-line.html
Formular:
* PSL = (Number of Rising Periods) / (Total Number of Periods) * 100
Example:
* `df['psl']` retrieves the PSL with default window 12.
* `df['psl_10']` retrieves the PSL with window 10.
* `df['high_12_psl']` retrieves the PSL of high price with window 10.
The Psychological Line indicator is the ratio of the number of
rising periods over the total number of periods.
https://library.tradingtechnologies.com/trade/chrt-ti-psychological-line.html
Formular:
Example:
df['psl']
retrieves the PSL with default window 12.df['psl_10']
retrieves the PSL with window 10.df['high_12_psl']
retrieves the PSL of high price with window 10.The text was updated successfully, but these errors were encountered: