feat(database): Add GBPJPY ticker to market_data seed data
- Add GBPJPY (GBP/JPY, forex, C:GBPJPY) to tickers seed - Now 7 tickers: XAUUSD, EURUSD, BTCUSD, GBPUSD, USDJPY, AUDUSD, GBPJPY Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
3f7816d4ec
commit
551091d26a
@ -44,11 +44,12 @@ COMMENT ON COLUMN market_data.tickers.symbol IS 'Símbolo del activo (XAUUSD, BT
|
||||
COMMENT ON COLUMN market_data.tickers.polygon_ticker IS 'Símbolo en formato Polygon.io (C:XAUUSD, X:BTCUSD)';
|
||||
COMMENT ON COLUMN market_data.tickers.is_ml_enabled IS 'Indica si el activo está habilitado para ML signals';
|
||||
|
||||
-- Seed: 6 activos principales
|
||||
-- Seed: 7 activos principales (6 ML + AUDUSD)
|
||||
INSERT INTO market_data.tickers (symbol, name, asset_type, base_currency, quote_currency, polygon_ticker) VALUES
|
||||
('XAUUSD', 'Gold/US Dollar', 'commodity', 'XAU', 'USD', 'C:XAUUSD'),
|
||||
('EURUSD', 'Euro/US Dollar', 'forex', 'EUR', 'USD', 'C:EURUSD'),
|
||||
('BTCUSD', 'Bitcoin/US Dollar', 'crypto', 'BTC', 'USD', 'X:BTCUSD'),
|
||||
('GBPUSD', 'British Pound/US Dollar', 'forex', 'GBP', 'USD', 'C:GBPUSD'),
|
||||
('USDJPY', 'US Dollar/Japanese Yen', 'forex', 'USD', 'JPY', 'C:USDJPY'),
|
||||
('AUDUSD', 'Australian Dollar/US Dollar', 'forex', 'AUD', 'USD', 'C:AUDUSD');
|
||||
('AUDUSD', 'Australian Dollar/US Dollar', 'forex', 'AUD', 'USD', 'C:AUDUSD'),
|
||||
('GBPJPY', 'British Pound/Japanese Yen', 'forex', 'GBP', 'JPY', 'C:GBPJPY');
|
||||
|
||||
Loading…
Reference in New Issue
Block a user