Class: Melaya::TradingNamespace
- Inherits:
-
Struct
- Object
- Struct
- Melaya::TradingNamespace
- Defined in:
- lib/melaya/namespaces.rb
Overview
Namespace grouping all trading-plane modules.
Modules:
market— REST market-data + reference endpoints (public + authenticated).account— Authenticated account reads: connected keys, tier limits, usage.sim— Paper trading (sim broker): virtual balance, positions, and orders.strategies— Launch, control, and inspect trading strategies (paper + live).backtest— Historical backtests + parameter sweeps on the Rust engine.stream— WebSocket streaming endpoints (public market data + private feeds).trade— Live trading — credentialed order placement on a connected exchange.
Instance Attribute Summary collapse
-
#account ⇒ Object
Returns the value of attribute account.
-
#backtest ⇒ Object
Returns the value of attribute backtest.
-
#market ⇒ Object
Returns the value of attribute market.
-
#sim ⇒ Object
Returns the value of attribute sim.
-
#strategies ⇒ Object
Returns the value of attribute strategies.
-
#stream ⇒ Object
Returns the value of attribute stream.
-
#trade ⇒ Object
Returns the value of attribute trade.
Instance Attribute Details
#account ⇒ Object
Returns the value of attribute account
40 41 42 |
# File 'lib/melaya/namespaces.rb', line 40 def account @account end |
#backtest ⇒ Object
Returns the value of attribute backtest
40 41 42 |
# File 'lib/melaya/namespaces.rb', line 40 def backtest @backtest end |
#market ⇒ Object
Returns the value of attribute market
40 41 42 |
# File 'lib/melaya/namespaces.rb', line 40 def market @market end |
#sim ⇒ Object
Returns the value of attribute sim
40 41 42 |
# File 'lib/melaya/namespaces.rb', line 40 def sim @sim end |
#strategies ⇒ Object
Returns the value of attribute strategies
40 41 42 |
# File 'lib/melaya/namespaces.rb', line 40 def strategies @strategies end |
#stream ⇒ Object
Returns the value of attribute stream
40 41 42 |
# File 'lib/melaya/namespaces.rb', line 40 def stream @stream end |
#trade ⇒ Object
Returns the value of attribute trade
40 41 42 |
# File 'lib/melaya/namespaces.rb', line 40 def trade @trade end |