Optuma Forums › Optuma General Discussion › Twitter Charts › Reply To: Twitter Charts
August 19, 2021 at 8:43 pm
#65621
- Topics: 70
- Replies: 804
- Posts: 874
Number of new all-time highs in 2021: https://twitter.com/Optuma/status/1427600292502294557?s=20
1 2 3 4 5 6 |
//Get new all-time highs; V1 = HIGH()>=HIGHESTHIGH(RANGE=All History); //Sum true conditions; ACC(V1,RANGE=Look Back Period, BACKTYPE=Date, STARTDATE=2020-12-31) |
Time since last ATH:
1 2 3 4 |
V1 = HIGH()>=HIGHESTHIGH(RANGE=All History); TIMESINCESIGNAL(V1) |
New ATHs in the last 10 days:
1 2 3 4 |
V1 = HIGH()>=HIGHESTHIGH(RANGE=All History); BARSTRUE(V1, LOOKBACK=10) |