close
Skip to content

CloudEngineHub/StockSharp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11,771 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Image

Introduction

StockSharp (shortly S#) – are free platform for trading at any markets of the world (crypto exchanges, American, European, Asian, Russian, stocks, futures, options, Bitcoins, forex, etc.). You will be able to trade manually or automated trading (algorithmic trading robots, conventional or HFT).

Available connections: Binance, MT4, MT5, FIX/FAST, PolygonIO, Trading Technologies, Alpaca Markets, BarChart, CQG, E*Trade, IQFeed, InteractiveBrokers, LMAX, MatLab, Oanda, FXCM, Rithmic, cTrader, DXtrade, BitStamp, Bitfinex, Coinbase, Kraken, Poloniex, GDAX, Bittrex, Bithumb, OKX, Coincheck, CEX.IO, BitMEX, YoBit, Livecoin, EXMO, Deribit, HTX, KuCoin, QuantFEED, Aster, edgeX, Ligther, Paradex, Hyperliquid and many other.

Image

Designer - free universal algorithmic strategies application for easy strategy creation:

  • Visual designer to create strategies by mouse clicking
  • Embedded C# editor
  • Easy to create own indicators
  • Build in debugger
  • Connections to the multiple electronic boards and brokers
  • All world platforms
  • Schema sharing with own team

Image

Hydra - free software to automatically load and store market data:

  • Supports many sources
  • High compression ratio
  • Any data type
  • Program access to stored data via API
  • Export to csv, excel, xml or database
  • Import from csv
  • Scheduled tasks
  • Auto-sync over the Internet between several Hydra instances

Image

Terminal - free trading charting application (trading terminal):

  • Connections to the multiple electronic boards and brokers
  • Trading from charts by clicking
  • Arbitrary timeframes
  • Volume, Tick, Range, P&F, Renko candles
  • Cluster charts
  • Box charts
  • Volume Profile

Image

Shell - the ready-made graphical framework with the ability to quickly change to your needs and with fully open source code in C#:

  • Complete source code
  • Support for all StockSharp platform connections
  • Support for Designer schemas
  • Flexible user interface
  • Strategy testing (statistics, equity, reports)
  • Save and load strategy settings
  • Launch strategies in parallel
  • Detailed information on strategy performance
  • Launch strategies on schedule

API is a free C# library for programmers who use Visual Studio. The API lets you create any trading strategy, from long-timeframe positional strategies to high frequency strategies (HFT) with direct access to the exchange (DMA). More info...

Connector example

var connector = new Connector();
var security = connector.LookupById("AAPL@NASDAQ");

var subscription = new Subscription(DataType.TimeFrame(TimeSpan.FromMinutes(1)), security);

connector.CandleReceived += (sub, candle) =>
{
        if (sub != subscription || candle.State != CandleStates.Finished)
                return;

        // determine candle color
        var isGreen = candle.ClosePrice > candle.OpenPrice;

        // register market order depending on candle color
        var order = new Order
        {
                Security = security,
                Type = OrderTypes.Market,
                Side = isGreen ? Sides.Buy : Sides.Sell,
                Volume = 1
        };

        connector.RegisterOrder(order);
};

connector.Subscribe(subscription);
connector.Connect();

Crypto exchanges

Logo Name Documentation
Image Bibox Docs
Image Binance Docs
Image BingX Docs
Image Bitalong Docs
Image Bitbank Docs
Image Bitget Docs
Image Bitexbook Docs
Image Bitfinex Docs
Image Bithumb Docs
Image BitMax Docs
Image BitMEX Docs
Image BitStamp Docs
Image Bittrex Docs
Image BitZ Docs
Image ByBit Docs
Image BW Docs
Image CEX.IO Docs
Image Coinbase Docs
Image CoinBene Docs
Image CoinCap Docs
Image Coincheck Docs
Image CoinEx Docs
Image CoinExchange Docs
Image Coinigy Docs
Image CoinHub Docs
Image Cryptopia Docs
Image Deribit Docs
Image DigiFinex Docs
Image DigitexFutures Docs
Image EXMO Docs
Image FatBTC Docs
Image GateIO Docs
Image GDAX Docs
Image GOPAX Docs
Image HitBTC Docs
Image Hotbit Docs
Image Huobi Docs
Image IDAX Docs
Image Kraken Docs
Image KuCoin Docs
Image LATOKEN Docs
Image LBank Docs
Image Liqui Docs
Image Livecoin Docs
Image MEXC Docs
Image OKCoin Docs
Image OKEx Docs
Image Poloniex Docs
Image PrizmBit Docs
Image QuoineX Docs
Image TradeOgre Docs
Image Upbit Docs
Image YoBit Docs
Image Zaif Docs
Image ZB Docs

DEX exchanges

Logo Name Documentation
Image Aster Docs
Image edgeX Docs
Image Ligther Docs
Image Paradex Docs
Image Hyperliquid Docs

Stock, Futures and Options

Logo Name Documentation
Image Polygon.io Docs
Image Alpaca.Markets Docs
Image Interactive Brokers Docs
Image FIX protocol (4.2, 4.4. 5.0) Docs
Image FAST protocol Docs
Image BVMT Docs
Image AlphaVantage Docs
Image BarChart Docs
Image CQG Docs
Image E*TRADE Docs
Image Google Docs
Image IEX Docs
Image IQFeed Docs
Image ITCH Docs
Image OpenECry Docs
Image Quandl Docs
Image QuantFEED Docs
Image Rithmic Docs
Image Sterling Docs
Image Tradier Docs
Image Xignite Docs
Image Yahoo Docs
Image Blackwood (Fusion) Docs

Forex

Logo Name Documentation
Image DXtrade Docs
Image cTrader Docs
Image MT4 Docs
Image MT5 Docs
Image DukasCopy Docs
Image FXCM Docs
Image LMAX Docs
Image Oanda Docs

About

Algorithmic trading and quantitative trading open source platform to develop trading robots (stock markets, forex, crypto, bitcoins, and options).

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • C# 99.3%
  • Other 0.7%