Simeon Posted September 22, 2021 Report Posted September 22, 2021 Please can I request a %change subgraph that shows how much a stock has increased/decreased in the past? Quote
0 Mike Medved Posted September 23, 2021 Report Posted September 23, 2021 do you mean just plot the Close - PrevClose for every candle? 1 Quote
0 Simeon Posted September 23, 2021 Author Report Posted September 23, 2021 Yes exactly and expressed as a percentage Quote
0 Mike Medved Posted September 23, 2021 Report Posted September 23, 2021 I could add that as an indicator but it could be easily added as a paintbar... This would be the code of the paintbar: public void MainCalculation() { SetColor("Line", SysColor.MainIndicator1); var ChangePer = (Close-Close[1])*100/Close[1]; SetYValue(ChangePer); } Quote
0 Simeon Posted September 24, 2021 Author Report Posted September 24, 2021 Very impressed thank you! I will read more about the painbars in the guide Quote
Question
Simeon
Please can I request a %change subgraph that shows how much a stock has increased/decreased in the past?
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.