♥ 0 |
I would appreciate any help, pointer, example that would let me scan on ToS to find the number of new highs set during a particular timeframe i.e. this/last week or this/last month. Following is the code to count new highs but do not know about setting timframe def newhigh = high; def highup = newhigh > newhigh[1]; def countnewhigh = CompoundValue(1, if highup then highup + 1 else highup + 0, 0); Thanks in advance
Marked as spam
|
Please log in to post questions.