EsIstJosh

Results 9 comments of EsIstJosh

`bg_col= '#000000' # Pick Background color up_col= '#acfb00' # Pick Green candle color dn_col= '#ff0000' # Pick Red candle color chart.layout(background_color=bg_col) chart.candle_style(up_color=bg_col, down_color=bg_col, border_up_color=up_col, border_down_color=dn_col, wick_up_color=up_col, wick_down_color=dn_col) # Set candle...

I think the issue likely stems from an error in the way drawings are attached to the chart. Are you removing the main series when trying to add the bar...

> @EsIstJosh I've tried installing your fork, but it'm experiencing the following issue: > ``` > Traceback (most recent call last): > File "C:\...\visualize.py", line 42, in > chart =...

You could adapt / mimic js_data() in utils.py to work with nested lists instead of dataframes. Take each candle/datapoint's values, create a dictionary like this, put them all into a...

You could do this pretty easily actually, by editing my dynamic aggregation logic/method (for the "BarDataAggregator" class : https://github.com/EsIstJosh/lightweight-charts-python/blob/main/src/ohlc-series/renderer.ts ) to include logic for how renko style charts operate in...

Thanks man, appreciate it. I'm sure u can figure it out; I'm new to this too so I relied on chatGPT pretty heavily for that portion of the project. slowly...

While it hasn't been officially implemented yet here, you can add it pretty easily if you want to by replicating the candlestick series' implementation inside of abstract.py and the other...

It is however you will likely run into issues if you try to just switch to my version because i've updated the lightweight-charts library to version 5, not to mention...