tvjsx / trading-vue-js

💹 Hackable charting lib for traders. You can draw literally ANYTHING on top of candlestick charts. [Not Maintained]
https://tvjsx.github.io/trading-vue-demo/
MIT License
2.09k stars 638 forks source link

1.0 Version #131

Closed marcossapp closed 4 years ago

marcossapp commented 4 years ago

@C451, first I want to say your library is amazing. Thanks by your contribution.

I was checking the roadmap and I could see some functionalities done, will you release all of them together or it will be as long as cards are done? My question is because I would like to use your library but some things are in WIP so I will have to wait for it.

BTW, is there any deadline for this version? The timezone setting is a very important thing (at least for me) because even if I do what you suggested in another Issue, for real-time (chart update method) is always considering UTC.

So, looking forward next releases!

C451 commented 4 years ago

Thanks, I have the end of 2020 as a target. Need to consolidate all experimental features as well as the road map points.

marcossapp commented 4 years ago

@C451 I see, what about this timezone setting feature, it will be also available for real-time chart updates?

adsonvinicius commented 4 years ago

@marcossapp @C451 Is there any workaround to fix the real-time chart updates for timezone difference?

OnlyC commented 4 years ago

@adsonvinicius I edit src/components/js/botbar.js file (yeah, dirty hardcode). Plus or minus the amount of miliseconds you want. Your data need to always be UTC+0 timezone.

functions: format_date & format_cursor_x let d = new Date(t+25200000)

adsonvinicius commented 4 years ago

So, I should get the ohlcv with TS at UCT+0 and the bot-bar timestamp will be shown to my timezone just changing these functions? Even when chart-update-method (getting price/volume only) is called?