Examples of TickTrader Algo bots

Examples of TickTrader Algo bots

Examples that will help you write your own bots can be found athttps://github.com/SoftFx/AlgoBots. 
This repository contains public indicators and bots for the Bot API:
    • ImportAccountStateBot. This bot helps to integrate bots written on another programming language to SoftFx Environment. Just write required trade state to csv file from python, mathlab and this bot will adjust orders and positions to the required state.
    • 100YearPortfolio. Based on the stock distribution in the Portfolio sheet, this bot tries to open and modify positions according to desired distribution.
    • MACDsampleBot. The MACD expert advisor is designed to use moving average convergence and divergence to enter a trade. This one will open up a trade once the signal line breaks through the MACD histogram and both are below (or above) the zero lines.
    • MovingAverageBot. The Moving Average bot uses one Moving Average indicator to trade. If a candle crosses the Moving Average from below, the EA will enter a long position. Vice Versa for the short position. If you enter a Padding in Pips, the bot will only open a BUY position if the price is X pips above the Moving Average Line.
    • TPtoAllNewPositionsInPercents. The bot emulates the Take Profit for positions on Net account. Every time interval it checks the amount of positions and updates the limit orders set so that the amount of position opened by a symbol is equivalent to the amount of limit orders.

See also

  1. Installing Visual Studio
  2. Installing Algo Visual Studio Extension
  3. Creating a TickTrader Algo bot