All Projects → drewnoakes → fix-decoder

drewnoakes / fix-decoder

Licence: other
Unravels FIX messages into human readable tables

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to fix-decoder

coinbase-fix-example
Simple example application for Coinbase Pro FIX API
Stars: ✭ 42 (-40.85%)
Mutual labels:  trading, fixprotocol
Stocksharp
Algorithmic trading and quantitative trading open source platform to develop trading robots (stock markets, forex, crypto, bitcoins, and options).
Stars: ✭ 4,601 (+6380.28%)
Mutual labels:  trading, fixprotocol
FsFIX
an F# FIX engine
Stars: ✭ 22 (-69.01%)
Mutual labels:  fix, fixprotocol
Automatic-Stock-Trading
Trading Algorithm by XGBoost
Stars: ✭ 58 (-18.31%)
Mutual labels:  trading
tg-file-decoder
Decode Telegram bot API file IDs
Stars: ✭ 30 (-57.75%)
Mutual labels:  decoder
encoding-html
A golang library for decoding html into structs
Stars: ✭ 29 (-59.15%)
Mutual labels:  decoder
trading-gmbh
Gründung einer vermögensverwaltenden GmbH
Stars: ✭ 34 (-52.11%)
Mutual labels:  trading
TAcharts
Apply popular TA tools and charts to candlestick data with NumPy.
Stars: ✭ 131 (+84.51%)
Mutual labels:  trading
reactive-trader
In the coming weeks this plans to become a Gekko plugin that reacts to market changes, finding and running only the most profitable strategies.
Stars: ✭ 91 (+28.17%)
Mutual labels:  trading
SlimTrade
A trade macro overlay for the game Path of Exile
Stars: ✭ 78 (+9.86%)
Mutual labels:  trading
degiro-trading-tracker
Simplified tracking of your investments
Stars: ✭ 16 (-77.46%)
Mutual labels:  trading
Sequence-to-Sequence-Learning-of-Financial-Time-Series-in-Algorithmic-Trading
My bachelor's thesis—analyzing the application of LSTM-based RNNs on financial markets. 🤓
Stars: ✭ 64 (-9.86%)
Mutual labels:  trading
fixparser
FIX5.0SP2 parser.
Stars: ✭ 50 (-29.58%)
Mutual labels:  fix
howtrader
Howtrader is a crypto currency quant framework, you can easily develop, backtest and run your own strategy in real market. It also supports tradingview or other 3rd party signals, just simply send a post request and it will help trade automatically. Now it only support binance spot, futures and inverse futures exchange. It will support okex, ftx…
Stars: ✭ 294 (+314.08%)
Mutual labels:  trading
fix-rust
FIX (Financial Information Exchange) client in Rust
Stars: ✭ 16 (-77.46%)
Mutual labels:  fix
twitter-crypto-bot
This is a Twitter bot that tweets about cryptocurrencies prices every certain amount of minutes
Stars: ✭ 21 (-70.42%)
Mutual labels:  trading
tellerbot
Telegram Bot for over-the-counter trading
Stars: ✭ 17 (-76.06%)
Mutual labels:  trading
pine-script-mode
GNU Emacs Major mode for Trading View pine script
Stars: ✭ 18 (-74.65%)
Mutual labels:  trading
bybit-api
Node.js connector for the Bybit APIs and WebSockets, with TypeScript & browser support.
Stars: ✭ 69 (-2.82%)
Mutual labels:  trading
gdax-ohlc-import
Import historical OHLC data from GDAX
Stars: ✭ 26 (-63.38%)
Mutual labels:  trading

FIX Decoder

Visit the live site at https://drewnoakes.com/fix-decoder/

Screenshot of FIX Decoder

A convenient and powerful decoder for FIX messages.

All processing is done locally in your browser, so no one can snoop on your messages.

Unlike the most prominent online FIX message decoder, this version is open source so you can prove that your messages are safe. This version supports a wider range of message representations too, including multiple messages.

For example, you can paste directly from a QuickFIX log:

<20121206-12:04:56, FIX.4.2:MyComp->YourComp, outgoing> (8=FIX.4.2 9=189 35=AE 34=510 49=MyComp 52=20121206-12:04:56.898 56=YourComp 22=4 31=157.8 32=10 43=N 48=GB00B16GWD56 60=20121206-12:04:56.891 64=20121206 150=0 570=N 571=TRADE_ID_88871 828=0 918=GBX 10=028 )

<20121206-12:05:06, FIX.4.2:MyComp->YourComp, incoming> (8=FIX.4.2 9=119 35=AR 49=YourComp 56=MyComp 34=753 52=20121206-12:05:08 370=20121206-12:04:58.744 571=TRADE_ID_88871 150=0 939=0 10=106 )

Note the leading text is ignored, and that there are multiple messages. Also the non-printable SOH character (\001) is handled correctly.

Using pipe characters (|) as separators is also supported.

How to build

In order to build this project, you need to have 2 tools installed on your computer: yarn (package manager), and gulp (build system). Please find below the link to their respective documentation:

To download the dependancies, run on the repository's folder:

yarn install

Then to build the project, just type:

gulp

The files will be copied on the 'dist' directory.

License

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].