- [Trading View](./examples/php/) ```php fetch_ohlcv($symbol); // convert OHLCV → TradingView $trading_view = $exchange->convert_ohlcv_to_trading_view($ohlcv); // convert TradingView → OHCLV $restored_ohlcvs = $exchange->convert_trading_view_to_ohlcv($trading_view); print_r($restored_ohlcvs); ?> ```