Navigate:
All Repostradingview
~$TRADIN0.2%

Tradingview Implementation for Binary.com charts

Custom datafeed integration for Tradingview charting library.

LIVE RANKINGS • 06:52 AM • STEADY
TOP 100TOP 100TOP 100TOP 100TOP 100TOP 100TOP 100TOP 100TOP 100TOP 100TOP 100TOP 100
OVERALL
#59
42
DEVELOPER TOOLS
#11
1
30 DAY RANKING TREND
ovr#59
·Devel#11
STARS
13.4K
FORKS
2.1K
DOWNLOADS
7D STARS
+32
7D FORKS
+3
See Repo:
Share:

Learn more about tradingview

//@version=5 indicator("RSI") plot(ta.rsi(close, 14))

tradingview

1

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.

2

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.

3

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)

vv5.0.9

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.
vv5.0.8

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.
vv5.0.7

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

Loading tweets...


[ EXPLORE MORE ]

Related Repositories

Discover similar tools and frameworks used by developers