esteban2006

Results 8 comments of esteban2006

Hello there if you were asking for the formula, here it is, and also check : [this pdf](https://www.ireallytrade.com/newsletters/VIXFix.pdf) `VIX Fix = (Highest (Close,22) – Low) / (Highest (Close,22)) * 100`...

hello there @gokulchittaranjan and @louisnw01, I have a question is there a way to add a on context menu, basically a right click personalized menu ? ![image](https://github.com/user-attachments/assets/85128da0-6cad-4222-90d0-d1e898f3f55f) [check this codepen...

# chart.grid() is showing the same problem with - vert_enabled - horz_enabled

# applying style chart.grid("style": "doted") will make the graph to dissappear

it is also happening with update_items it is not updating the new items passed

i got the same problem @Gabsys, the reason was that I was using a private repo, it was done after I changed my ropo to public

@debegr92 Here is a possible approach ``` python self.chart.switch_chart_type("bar") self.chart.set(self.df, keep_drawings=True) JS -> abstract def switch_chart_type(self, type: str): """ Switches the chart type to either 'candle' or 'bar'. """ self.run_script(f"{self.id}.switchSeriesType('{type}')")...