Tradingview Implementation for Binary.com charts
Custom datafeed integration for Tradingview charting library.
Learn more about tradingview
//@version=5 indicator("RSI") plot(ta.rsi(close, 14))

Unified codebase for multiple platforms
The same HTML, JavaScript, and CSS codebase is used for both web and mobile deployments, reducing duplication and maintenance overhead. The project structure supports generating hybrid packages for iOS and Android through IntelXDK without requiring separate implementations.
Custom Tradingview datafeed implementation
Contains a custom datafeed module in chart_library/datafeed that bridges Tradingview's charting library with Binary.com's trading data and API. This allows the charting interface to receive real-time market data specific to Binary.com's offerings.
Hybrid mobile packaging approach
Uses IntelXDK to generate native-like mobile applications from the web codebase, enabling distribution through standard app stores while maintaining a single source of truth for the application logic.
//@version=5
indicator("My RSI Strategy")
rsiValue = ta.rsi(close, 14)
plot(rsiValue, "RSI", color=color.blue)
hline(70, "Overbought", color=color.red)
hline(30, "Oversold", color=color.green)Adds pixel-based right margin control, series data removal, and marker auto-scale options; fixes log-scale price range precision.
- –Use `rightOffsetPixels` in `HorzScaleOptions` for consistent pixel margins across charts with varying data volumes.
- –Call `pop()` on series API to remove trailing data points and retrieve them, or set `autoScale: false` on markers to exclude from scaling.
Adds programmatic pane control and context-aware tick mark formatting; no breaking changes or new requirements.
- –Use `addPane`, `setStretchFactor`, and `addDefaultPane: false` to build multi-pane charts without initial panes.
- –Implement `formatTickmarks` on custom price formatters to adjust precision based on all visible tick mark values.
Adds programmatic price scale range control and series marker z-order customization; no breaking changes or migrations required.
- –Use `setVisibleRange`, `getVisibleRange`, or `setAutoScale` on `IPriceScaleApi` to control displayed price ranges programmatically.
- –Set `zOrder` in series markers plugin to control rendering stacking order and manage marker layering in complex charts.
See how people are using tradingview
Top in Developer Tools
Related Repositories
Discover similar tools and frameworks used by developers
json
Header-only C++ library for JSON with STL-like containers.
moq
Mock .NET objects using lambda expressions and LINQ.
redoc
React component rendering OpenAPI specifications as interactive HTML documentation.
json-server
Zero-config REST API server from JSON files.
grafana
Query and visualize metrics from multiple data sources.