Warning! Executing cBots downloaded from this section may result in loss of funds. Use them at your own risk.
Notification Publishing copyrighted material is strictly prohibited. If you believe there is copyrighted material in this section you may use the Copyright Infringement Notification form to submit a claim.
General info

Username: | afhacker |
Name: | Ahmad Noman Musleh |
Member since: | 15 Oct 2015 |
Country: | Afghanistan |
Favorite symbols: | EURUSD |
About:
Signature:
http://algodeveloper.com/
Last comments
- @Order Slicer 1.0.0: megamemo; What do you mean by "leave it like that"?
- @Alert Popup (WPF window) 1.3.2: Sorry, I can't help you with that.
- @Alert Popup (WPF window) 1.3.2: the bug in alert library version 1.3.2 fixed, about fast MACD no I don't know how it's calculated.
- @Alert Popup (WPF window) 1.3.1: Test the new version
- @Alert Popup (WPF window) 1.3: Link fixed.
- @Alert Popup (WPF window) 1.3: @Danis I have fixed the previous versions bugs please test the version 1.3 and let me know the result. I tested the new version on Windows 10 FxPro cAlgo and it was working fine.
- @Alert Popup (WPF window) 1.2: @Danis try the new version 1.2
- @Supply And Demand Zones 2.0: @yong_alison please read the documentation: http://docs.algodeveloper.com/supply_demand/ Once you added the indicator to a chart you can change the indicator settings from "objects list": https://drive.google.com/open?id=1hQ_fVGUm3UqMbStpkmUI-3TCd3fFS5V1
- @Alert Popup (WPF window) 1.1: hamidreza.taali@gmail.com I lost your forum thread link.
- @Alert Popup (WPF window): hamidreza.taali@gmail.com, Your indicator access rights are set to "None", change it to full access. And you are using the old alert library use the WPF version instead.
Algorithms
DescriptionSubmited byDateCategoryPreviewDownloadsCommentsRating
The Market Status indicator shows the current status of the market and buy/sell signals when a new trend starts and price breaks the consolidation zone.
Free Download Trial / Buy: https://www.algodeveloper.com/43-market-status
by afhacker
13 Mar 2018
It's a trend exhaustion indicator which gives an early signal about trend exhaustion and allows you to take profit or take a counter-trend position.
Download Free Trial / Buy: https://www.algodeveloper.com/42-td-sequential
by afhacker
02 Mar 2018
This indicator shows the price outliers by using two top and bottom lines as normal price range and anything outside that range will be outliers.
Free Download Trial / Buy: https://www.algodeveloper.com/41-outliers
by afhacker
28 Feb 2018
A multi-time frame Heiken Ashi indicator that shows HA bars on a histogram separate from the main chart.
Free Download Trial / Buy: https://www.algodeveloper.com/39-heiken-ashi-mtf
Version 2.0.0.0
Release Date: April 18, 2018
Added: Smoothed Heiken Ashi
Changed: Alert library updated
by afhacker
18 Apr 2018
Its a library for cTrader indicators and cBots to show a popup alert window, you can use it on your custom indicators and cBots.
Your indicator/cBot user will be able to select the alert sound file or enable/disable it without any coding effort by you.
Features
Easy to use
WPF window instead of Windows Forms
Multiple themes and accents
Removing alerts
Playing sound and allowing the user to select the sound file via Windows Explorer
Email alert
Changing time zone and format
Changelog
Version: 1.3.4
Release Date: 3/11/2018
Added: TriggerType enum to avoid bars index management by user
Quick Start
For using it on your indicator / cBot first add this DLL files as referenced libraries:
Alert.dll
MahApps.Metro.dll
CsvHelper.dll
System.Windows.Interactivity.dll
you can add those files by using cAlgo "Reference Manager":
For opening Reference Manager right click on your indicator / cBot name in cAlgo then select "Manage References" option.
The Alert libraries added the next step is to change your indicator / cBot "AccessRights" to "FullAccess":
// For cBots
[Robot(TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)]
// For indicators
[Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)]
After that add this to your cBot OnStart or indicator Initialize method:
// cBot
Alert.Factory.Robot = this;
// Indicator
Alert.Factory.Indicator = this;
This will allow Alert library to access your cBot / Indicator Print method for logging.
Now you can trigger an alert by calling "Alert.Factory.Trigger" method:
// You can use the comment parameter for showing the indicator or cBot name
Alert.Factory.Trigger(TradeType.Buy, Symbol, MarketSeries.TimeFrame, Server.Time, "Test");
// By default the trigger method uses "PerBar" type, which only triggers the alert per each bar
// You can change the trigger type to Instant which triggers the alert instantly
Alert.Factory.Trigger(TradeType.Buy, Symbol, MarketSeries.TimeFrame, Server.Time, "Test", Alert.TriggerType.Instant);
The time parameter of trigger method is DateTimeOffset not DateTime, so if you pass a DateTime like "Server.Time" it will consider the time zone UTC 0.
Download DLL Files: https://drive.google.com/open?id=1yeqtxcR1RSbKnLksnVw-PzZNLah__RLq
Project: https://github.com/afhacker/ctrader-alert_popup
Full Sample:
using cAlgo.API;
using cAlgo.API.Internals;
namespace cAlgo
{
[Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)]
public class AlertTest : Indicator
{
protected override void Initialize()
{
Alert.Factory.Indicator = this;
}
public override void Calculate(int index)
{
if (MarketSeries.Open.Last(1) < MarketSeries.Close.Last(1))
{
Alert.Factory.Trigger(TradeType.Buy, Symbol, MarketSeries.TimeFrame, Server.Time, "Alert Test");
}
else if (MarketSeries.Open.Last(1) > MarketSeries.Close.Last(1))
{
Alert.Factory.Trigger(TradeType.Sell, Symbol, MarketSeries.TimeFrame, Server.Time, "Alert Test");
}
}
}
}
by afhacker
11 Mar 2018
This indicator recognizes the MACD indicator divergence and shows it on your chart and MACD indicator.
Free Download Trial / Buy: https://www.algodeveloper.com/36-macd-divergence
Version 2.0.0.0
Release Date: March 27, 2018
Added: Buy / Sell signals
Changed: The recognition algorithm
Changed: Alert library updated
Changed: Buy and sell histogram separated
Fixed: Repaint issue
by afhacker
27 Mar 2018
It shows the correlation between chart symbol and five other different symbols.
Download Demo / Buy: https://www.algodeveloper.com/33-correlation
by afhacker
17 May 2017
This indicator shows the currencies strength by using average price percentage gain/loss.
Free Download Trial / Buy: https://www.algodeveloper.com/32-strong-and-weak
Version 2.0.0.0
Release Date: April 20, 2018
Added: Multi time-frame feature
Added: Chart legend
Changed: Calculation method from all bars to x previous bars based on user-defined periods number
by afhacker
20 Apr 2018
This indicator allows you to compare multiple symbols with each other in terms of percentage change.
Free Download Trial / Buy: https://www.algodeveloper.com/31-compare
Version 2.0.0.0
Release Date: April 12, 2018
Added: New Periods based version
Added: Chart legend
Changed: Separated each comparison type to different versions
by afhacker
12 Apr 2018
This indicator shows the COT report data on a line chart.
Download Free Trial / Buy: https://www.algodeveloper.com/30-cot
Version 2.0.0.0
Release Date: March 22, 2018
Fixed: Not working with new Quandl API bug
Added: Legacy option
by afhacker
22 Mar 2018
This indicator shows VIX current value on bottom of your chart, It use Quandl for getting VIX data.
Download Demo / Buy: https://www.algodeveloper.com/29-vix
by afhacker
03 May 2017
This indicator shows current market bias, High / Low strength and swings on a histogram.
Download Link: https://www.algodeveloper.com/28-wedge
by afhacker
29 Apr 2017
This indicator shows different market conditions by calculating trends start and end angle.
Free download Trial Version / Buy: https://www.algodeveloper.com/27-trend-angle
Version 2.0.0.0
Release Date: April 16, 2018
Changed: The angle calculation method
Changed: Improved performance
by afhacker
16 Apr 2018
This indicator draws the GANN fans on chart, It's another built-in missing tool on cTrader.
Buy or free download it's demo version : https://www.algodeveloper.com/26-gann-fan
by afhacker
03 Apr 2017
It's volume profile indicator for cTrader / cAlgo platforms.
Download Free Trial / Buy: https://www.algodeveloper.com/25-volume-profile
Version 2.0.0.0
Release Date: April 05, 2018
Changed: Calculation algorithm
Added: New length management model
Added: Showing the volume profile on Right / Left sides
Added: New style parameter for changing the line style of volume profile
Added: Neutral volume
Added: Separator vertical line
by afhacker
05 Apr 2018
It shows two rectangle on predifined time periods of a trading day.
Download Demo / Buy: https://www.algodeveloper.com/23-extended-trading-hours
by afhacker
15 Jan 2017
It counts and show the consecutive bars number in a histogram.
Download Demo / Buy : https://www.algodeveloper.com/22-consecutive-bars
by afhacker
08 Jan 2017
It shows how much the current bar changed the price in percentage compare to previous closed bar.
Download Demo / Buy : https://www.algodeveloper.com/20-percentage-change
by afhacker
01 Jan 2017
This indicator shows the current makret condition on histogram.
Download : https://www.algodeveloper.com/19-market-regimes
by afhacker
01 Jan 2017
A popular momentum oscillator that weren't on cTrader built-in indicators list.
Download : https://www.algodeveloper.com/18-percentage-price-oscillator
by afhacker
26 Dec 2016
This indicator show the market volitality based on Bollinger Bands distance.
Download : https://www.algodeveloper.com/16-bbands-volatility
by afhacker
07 Dec 2016
It shows the three bar reversal candlestick pattern, The pattern signals have high accuracy and R:R.
Download : https://www.algodeveloper.com/15-three-bar-reversal-pattern
by afhacker
07 Dec 2016
It's an ADX based indicator that shows the ADX indicator provided information in simple and easy to use format.
Download : https://www.algodeveloper.com/14-go-with-trend
by afhacker
07 Dec 2016
It shows the Keltner channels breakout pattern in histogram.
Download : https://www.algodeveloper.com/13-keltner-blast
by afhacker
07 Dec 2016
Volume weighted average price indicator for cTrader.
Free Download Trial / Buy: https://www.algodeveloper.com/10-vwap
by afhacker
21 Feb 2018
It shows the ration between bears and bulls volume for each bar.
Download : https://www.algodeveloper.com/11-volume-ratio
by afhacker
07 Dec 2016
This indicator gives you high probability trend trading signals by using candlestick patterns, It's combination of candle patterns and technical indicators.
Download Demo / Buy : https://www.algodeveloper.com/9-trend-catcher
by afhacker
07 Dec 2016
This indicator recognizes supply and demand zones on your chart and marks the zones with a rectangle, When price touched a zone it shows an alert window and then it removes that zone from your chart.
Version 2.0.0.0
Release Date: December 31, 2017
Added: Popup, sound and email alert
Added: Removing broken zones
Added: Setting maximum touch number for zones to be removed
Changed: Zones calculation algorithm
Download Free Trial / Buy:
https://www.algodeveloper.com/1-supply-and-demand-zones
by afhacker
31 Dec 2017
This indicator catches the reversals by using Bollinger bands and rejection candle, Whenever price touches one of the bands and form a rejection candle it shows a buy or sell signal.
Download Demo / Buy:
http://algodeveloper.com/4-reversal-magic
by afhacker
07 Dec 2016
Tick volume data in Forex market is an extra piece of information that traders has but the point is how should we use it? And what it can tell us? For me tick volume is nothing but an indicator for price volatility on specific period of time so alongside other volatility indicators we can use it to find the market volatility.
This indicator separates tick volume in two parts high and low, It use a moving average to find the average amount of x previous bars tick volume and then it compare the current bar tick volume with that average amount so if the current bar volume was above average volume it means this bar has higher volume and if it was lower than average volume it means the bar volume was lower.
Download : https://www.algodeveloper.com/5-high-low-volume
by afhacker
07 Dec 2016
This indicator shows the MFI bot signals in dots style on your chart, If you are a manual discretionary trader and want to use your chart reading skills for filtering some signals then it's for you.
by afhacker
18 Sep 2016
It's same like my CCI channel indicator but It use RSI instead of CCI by using it you can identify over bought and over sold zones better and also the channel width gives you idea about how volatile is the market.
by afhacker
18 Sep 2016
This indicator is a great tool for short term day traders those who trade Time frames below M15, It shows some useful information about that symbol on it's chart.
Symbol Info display ATR value in pips(You can use the multiplier to multiply ATR value), daily High / Low lines, real time spread, ADR or average daily range, Current day range, amount of space in pips that particular pair can go up / down on that day based on ADR and the longer time frame trend direction by using a moving average.
You can adjust the color of Up / Down space by setting your Risk / Reward if you are using ATR value as your trades stop loss.
Download : https://www.algodeveloper.com/7-symbol-info
by afhacker
13 Apr 2017
It takes the Ichimoku Tenkan Sen and Kijun Sen lines and make a trend channel like using two moving average, The purpose of this indicator is to find pull backs when market is strongly trending and if you combine it with candle stick patterns you will come up with a great trend trading system.
by afhacker
26 Aug 2016
As you know cAlgo & cTrader API doesn't has any type of built in alert window feature so I made this library for indicator developers who want to add an alert window on their indicators, Below is short tutorial of how to use this library.
Moved to: https://ctdn.com/algos/show/1692
New Version Changes:
The classic Windows UI changed to Metro
Alerts list control changed from ListView to DataGridView
Now you can limit the number of alerts
Top most window bug fixed
How to use Alert Window:
1. Use cAlgo reference manager and add "Alert.dll", "MetroFramework.dll", "MetroFramework.Design.dll", and "MetroFramework.Fonts.dll" DLL files to your indicator:
2. Set the indicator access right to " FullAccess":
[Indicator(IsOverlay = true, TimeZone = TimeZones.UTC, AccessRights = AccessRights.FullAccess)]
3. Add the "AlertWindow" and "System.Threading.Tasks" name spaces on top of your indicator code by adding:
using System.Threading.Tasks;
using AlertWindow;
4. Make an instance of "Alert" class:
private Alert _alarm;
protected override void Initialize()
{
// The class constructor receives three parameters, Indicator name and symbol code
// And Maximum number of alerts(it's optional and default value is 12)
_alarm = new Alert("Your Indicator Name As String", Symbol.Code);
}
5. Now you can trigger an alert by calling "Trigger" method of "Alert" class, This method get two parameters:
// You should use C# Task for running the code asynchronously
// Signal Type can be buy and sell or long and short(string)
// Server.Time is the time of signal(event) occurrence.
Task showForm = Task.Factory.StartNew(() => { _alarm.Trigger(SignalType, Server.Time); });
Alert Window:
Download:
https://drive.google.com/open?id=0B93GK1Ip4NSMSlFNSjU4eVdvN0U
Example:
http://ctdn.com/algos/show/1371
by afhacker
25 Oct 2017
It's same like traditional Bollinger Bands indicator but it use Linear Regression Forecast instead of MA, So it lag less than Bollinger bands.
If you have mean reversion bot based on Bollinger bands you can try to back test it with this indicator.
Download : https://www.algodeveloper.com/8-linear-bands
BitCoin: 1Me2TQ6Rgr8EevZNFKqvYegkbtY8C2cP5i
by afhacker
07 Dec 2016
You can see CCI on your chart like Bollinger Bands for finding over bought / sold areas.
When candle is above top line it means the CCI is above over bought level and when the candle is below bottom line it means the CCI is below over sold level.
BitCoin: 1Me2TQ6Rgr8EevZNFKqvYegkbtY8C2cP5i
by afhacker
16 Jul 2016
This indicator helps you to identify key breakout trading opportunities, It scans x amount of previous closed bars and check them if they were on a flat line type style and the latest closed bar broke them all or not also It has Bollinger bands indicator filter for getting only those breakout opportunities that came alongside with Bollinger bands squeeze setup.
By default the amount of range size parameter is zero and it means that indicator not using this functionality but I recommend you to adjust that parameter value based on instrument you trade and it's time frame.
Download Demo / Buy:
http://algodeveloper.com/3-breakout-candle
Alert:
With BBands Filter:
Without BBands Filter:
With Range Pips specified:
Without Range Pips:
With Longer TF trend filer enabled:
by afhacker
07 Dec 2016
This indicator spot morning and evening start patterns, It will draw a dot above or below the middle candle of particular pattern:
by afhacker
25 May 2016
This indicator shows bearish and bullish volume, It counts each up / down tick and shows them in a oscillator format.
Above zero shows bullish volume and below zero shows bearish volume.
If you are a tick chart scalper this indicator will be very helpful for you!
Download : https://www.algodeveloper.com/6-advanced-volume
M1 Chart:
As you are seeing on screenshot it's just work with live real time data.
by afhacker
07 Dec 2016
I just made this indicator for my personal use and I thought it maybe useful for others too, It's CCI indicator but the color of histogram bars are based on Heikin Ashi candles color so you can remove Heikin Ashi from your chart and just you can rely on this indicator alongside with your normal jap candlestick chart.
by afhacker
16 May 2016
This indicator is recognizing the Three Black Crows / Three White Soldiers patterns and it will draw a dot below or above the last candle of pattern.
by afhacker
01 Apr 2016
This indicator recognize rejection candles on chart:
The indicator measure the candle range from top to bottom based on percentage and then it identify the rejection candles.
Also I implemented something called "left space" and the number of previous opposite candles(in a row) so by using left space you can catch only those rejection candles that formed on peaks or valleys.
This indicator has an alarm, When the rejection candle closed it will play the alarm sound file.
For trading this indicator signals as a pure pattern use it only on daily time frame or above with default parameters.
Changes:
Added a new parameter for controlling the dot distance from candle
by afhacker
16 Mar 2016
DescriptionSubmited byDateCategoryPreviewDownloadsCommentsRating
A board full of your most used trading widgets for cTrader.
Free Download Demo / Buy: https://www.algodeveloper.com/40-cboard
by afhacker
02 Dec 2017
It slices your large orders into smaller orders and combines those sliced orders back to one large order that you will be able to manage easily.
Buy / Free Download Demo: https://www.algodeveloper.com/38-order-slicer
by afhacker
20 Oct 2017
cSocial is a stand-alone Windows application build on top of Spotware Connect API that allows you to share your cTrader trading account activity on various social networks, apps like Slack and email lists. By using cSocial you will be able to create a network of followers for your trading account activities so you can build signaling service or trading community with it. All you have to do is connect your social networks accounts, Slack team or setup email lists and start sharing your cTrader accounts.
Download free demo or buy: https://www.algodeveloper.com/37-csocial
by afhacker
17 Aug 2017
By using this cBot you will have the real-time economic calendar on your cTrader platform.
Features
Shows today news
Auto update the news per minute
Filtering news based on importance and currency
Setting sound and email alert
Drawing news lines on chart like TradingView
Multiple news sources
News volatility catcher cBot
Version 1.3.7.0
Release Date: September 28, 2017
Added: New cBot for trading news based on fixed time!
Changed: Separated the buy and sell orders SL / TP parameters in News volatility catcher cBot
Fixed: A bug with ForexFactory in cNews cBot
Download Demo / Buy: https://www.algodeveloper.com/35-cnews
by afhacker
28 Sep 2017
By using this cBot you can hide your trades stop loss and take profit levels.
Version 1.3.1.0
Release Date: June 29, 2017
Fixed: Incorrect SL / TP lines
Download Demo / Buy: https://www.algodeveloper.com/34-hidden-protection
by afhacker
29 Jun 2017
It's our new cBot that is based on a pure price action strategy without using any technical tools.
Changelog
Release Date: June 04, 2017
Changed: The SL / TP calculation method.
Download: https://www.algodeveloper.com/24-bars-trader
Fo more back test results please check our site.
by afhacker
04 Jun 2017
It's an application that allows you to manage multiple cTrader accounts from one place and copy one account trades to another account.
cMulti uses Spotware Connect API so it works fully separate from cTrader and the copying is done instantly without any latency, You can add as many accounts as you have from different brokers and cID profiles.
Now you can test all cMulti features on your live account with its free 7-day trial license!
Buy now and get 10% off, Discount code: cMulti2off
Version 2.5.1.0
Release Date: January 24, 2018
Fixed: A bug in account view mass orders close/cancel button
Changed: Internet connection check pop-up
Added: Mirroring profiles are able to recognize and manage the orders that were opened before start of the profile
Download 7 days trial / Buy: https://www.algodeveloper.com/17-cmulti
by afhacker
24 Jan 2018
This bot is based on Money Flow Index indicator and Heiken Ashi, The strategy is very simple it buys when a bullish HA candle closed and MFI was above a user defined level(default 40) and it sells when a bearish HA candle closed and MFI was below a user defined level(default 70).
It's not some martingale or grid type bot so it will have losing days, weeks and even consecutive losing months but it keeps your risk low and avoid big draw downs.
The above back test result time period was from 29/01/2012 to 16/09/2016 and the data type was tick data with $40 commission per standard lot.
Back test parameters file : https://drive.google.com/file/d/0B93GK1Ip4NSMbUt4aFA4dmxaVkU/view?usp=sharing
by afhacker
18 Sep 2016
Do you make a lot of mistake in trading? or do you have problem in following your system rules?
Quick Percentage Sizing is a tool designed for removing trader emotions and mistakes from trading it helps you auto size your trades based on x percentage of your account balance so no manual sizing also it force you to use stop loss orders for your trades based on market volatility(ATR), latest closed candle range or fixed pips.
Features:
Confirmation box before order execution
Trailing SL(Same like cTrader TSL)
Setting your trade SL and TP based on latest closed candle range
Placing stop order instead of market order on high or low of latest closed candle
Entry only on Candle close for avoiding late entries
One position per symbol
One position per currency
Quick access to slippage control
Maximum Risk percentage
Shows Risk:Reward ratio
Minimum R:R ratio for trades
Free Download:
http://algodeveloper.com/2-quick-percentage-sizing
Screenshots:
by afhacker
20 Oct 2017
It's my dashboard that I use everyday for my trading so I decided to share it in here, It has a lot of functionalities that helps you to know what's going on in market also it works as an standalone Windows App with modern UI.
Current Version Features:
Shows strong / weak currencies and pairs
Shows correlation
Shows volatility based on four different indicators
Shows trend direction
Strong / Weak
Strong / Weak calculation method is based on :
https://www.dailyfx.com/forex/education/trading_tips/post_of_the_day/2011/06/15/How_to_Create_a_Trading_Edge_Know_the_Strong_and_the_Weak_Currencies.html
Correlation
Select the pair and it will show you the correlation:
Volatility
It shows the amount of standard deviation, ATR and ABR(Average bar range) in Pips also Chaikin indicator value:
Trend
For finding trend direction it use three technical indicators MA, RSI and MACD:
And "Start Tab", You can change the dashboard settings there:
For changing the dashboard Symbols click on "Symbols" button:
GitHub:
https://github.com/afhacker/afhacker-Dashboard
by afhacker
18 Aug 2016
It's new version of "Trade Tweeter", The new version is based on Spotware Connect API.
Version 2.1.0.0
Release Date: January 08, 2016
Fixed: High CPU usage
Download: http://algodeveloper.com/12-trade-tweeter
by afhacker
16 Aug 2017
This bot allows you to add to your winning position, The main position must be opened manually and position label field must be blank.
It sets stop loss based on ATR for each opened position and you can set after how much pips in profit scale in also you can limit the number of scaled in position.
After you started the bot it will add to all of your wining positions(All symbols).
The bot will use Windows registry to save it's data.
Before using it in your live account please test it on demo account.
Parameters
Scale Prefix : It's label prefix for scaled in positions
Scale in after : This parameter allow you to set when scale in(After how much pips in profit add to trade)
Control Scaled In Trade Volume? : This parameter will decrease each the amount of risk after each adding each position.
Limit Scaling In? : This parameter enable / disable limiting functionality
Scale In # : If you set "Limit Scaling In?" parameter to yes then you can define how many positions you want to add after your main position.
Mother Close : If u set this parameter to yes bot will close all scaled in positions if the main closed in loss.
ATR Period : Its period of ATR indicator that will be used for setting SLs of positions.
ATR Multiplier : This number will be multiplied to ATR value.
% Risk Per Trade : This parameter allows you to set percentage of risk per position based on your account balance.
Slippage : It's for controlling slippage.
BitCoin: 1Me2TQ6Rgr8EevZNFKqvYegkbtY8C2cP5i
by afhacker
12 Jul 2016
I was curious about trading 200 EMA crosses with price because if you put it on your chart you will see it gives you some nice large pips trades, This bot open a buy order when an Heiken Ashi candle closed above MA or a sell order if it closed below MA.
Back test result of EURUSD D1 tick data from 11/11/2012 to 06/05/2016:
Back test parameters file: https://drive.google.com/file/d/0B93GK1Ip4NSMQndrQ2g2UmVWZzQ/view?usp=sharing
by afhacker
08 May 2016
There was an study that shows trading naked Heikin Ashi can be profitable :
https://www.tradinformed.com/simple-profitable-heikin-ashi-trading-system/
Heikin Ashi Indicator Link:
https://drive.google.com/file/d/0B93GK1Ip4NSMMWZDS29odjg0UXM/view
So I decided to make a bot for it and see how it's going to perform:
Back test parameters file:
https://drive.google.com/open?id=0B93GK1Ip4NSMckJVdVNNdWpEbXM
by afhacker
21 Apr 2016
It's "Trading Made Simple" system bot:
Original Thread: http://www.forexfactory.com/showthread.php?t=291622
For Newbies: http://www.forexfactory.com/showthread.php?t=586142
Heiken Ashi Indicator: https://drive.google.com/file/d/0B93GK1Ip4NSMV19yNUNsOVNOMU0/view?usp=sharing
I implemented all of the TMS filters and I tried to stick on core system without making it complicated.
BitCoin: 1Me2TQ6Rgr8EevZNFKqvYegkbtY8C2cP5i
by afhacker
20 Jul 2016
I created this bot for trading the rejection candle, previously I published the Rejection Candle Recognition indicator so now I'm publishing it's bot.
Features:
Checking of previous opposite candle
Checking candle left space
Checking the candle tick volume to previous candles
Placing stop loss based on ATR
Filtering the trending condition with MAs
Trading only with strong trend by managing MAs distance
Checking average previous candles range
Setting take profit based on number of Risk:Reward
MA based exit
Exiting from trades based on formations of candles
Stop Loss trailing
Chandelier SL trailing method
Time filter
Money management
I recommend you to use it only in daily time frame.
In all of the below back tests commission is 10 per million.
Below is screenshot of bot back test result on EURUSD D1 Tick Data from 11/11/2012 to 14/03/2016:
This one is from H4 EURUSD tick data from 11/11/2012 to 14/03/2016:
EURUSD H4 tick data from 11/11/2011 to 14/03/2016, No previous candle check:
by afhacker
17 Mar 2016
Copyright © 2018 Spotware Systems Ltd. All rights reserved.
The services provided by Spotware Systems Ltd. are not available to citizens or residents of the USA. Neither is the information on our websites directed toward soliciting citizens or residents of the USA.
The services provided by Spotware Systems Ltd. are not available to citizens or residents of the USA. Neither is the information on our websites directed toward soliciting citizens or residents of the USA.