hey guys, i need help to shorten the zeroes of the volume scale. i want it to show "k" for thousands, "m" for millions etc instead of the absolute number 000's and 000000's etc.
i have attached pictures. in the HBAR chart, its taking up the screen / scale as it is not shortened to B for billions etc. but on the other two charts it is shortened.
CoffeeShopCryptothe way the platform works i dont think you can show letters on the scale as you want them. you have options in the platform settings to represent...the way the platform works i dont think you can show letters on the scale as you want them. you have options in the platform settings to represent that but you cant change it to what you want in code. However in the STATUS area of the indicator you can do this. Go to your code and change or add "precision = 2" in the same line where it starts out "indicator"
this will shorten the number of decimal places being shown. The only other way you can show K, D, M, or other letters to the volume bars is you would otherwise need to set up a "str.tostring" function which will plot a label at the most recent confirmed closed bar. This can be done a couple ways. it can be a label showing what the LAST closed bar had for volume, and you can set whatever number of decimal places you want to use plus give it any letter after the number. This same label can show the currently active bar as its volume i changing. again with decimal places and so on.
so you basically have 3 options. What do you think?Show more12 months ago
CoffeeShopCryptoThis would be an example This particular label has 3 things tied to it
Last Price on the closed bar Average Price over x bars Difference between the...This would be an example This particular label has 3 things tied to it
Last Price on the closed bar Average Price over x bars Difference between the average and Last Price
Your label can have two things Last Closed Volume Currently Active VolumeShow more
12 months ago
joskxyhey , thankyou so so much. i used the precision method and helped me with my concern. in the indicator settings i changed it to zero and it actually...hey , thankyou so so much. i used the precision method and helped me with my concern. in the indicator settings i changed it to zero and it actually got rid of the the price scale decimals. and not just the status area value!!! thanks a ton. now it got rid of the annoying decimals taking up my screen Show more
12 months ago
joskxyits an indicator i made using volume threshold to highlight abnormal and react to the price action when it occurs. in the reddit trade post of SOL i...its an indicator i made using volume threshold to highlight abnormal and react to the price action when it occurs. in the reddit trade post of SOL i used the the abnormal volume and traded the reaction with targeting the consolidation liquidity at the bottomShow more12 months ago
Ahaahha I developed a very similar indicator that I cleaned up today while finding issues related to live peice...Dude! R u fucking kidding me right now?!
Ahaahha I developed a very similar indicator that I cleaned up today while finding issues related to live peice action on today's London and NY market sessions!
Ahah I think we developed a very similar tool.
Also. Let's link up on discord. I'll send u a DM. THIS WAY I can see how urs works and show u whats going on with mine. There might be some comparable advances we can make individually.
I was going to release mine today to the community Show more12 months ago
hey guys, i need help to shorten the zeroes of the volume scale. i want it to show "k" for thousands, "m" for millions etc instead of the absolute number 000's and 000000's etc.
i have attached pictures. in the HBAR chart, its taking up the screen / scale as it is not shortened to B for billions etc. but on the other two charts it is shortened.