Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.
From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.
Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
Elite Section
Get access to private discussions, specialized support, indicators and trading systems reported every week.
Advanced Elite Section
For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
maybe using two pairs of closely correlated opposite pairs will be the solution.
or the same pair but two different accounts, one only buy, the other only sell.
For example GBP/USD
if 1.9930, account 1: buy 1; if 1.9940, close all positions and take profit.
if 1.9920, account 2: sell 3; if 1.9920, close all positions and take profit.
if 1.9930, account 1: buy 6; if 1.9940, close all positions and take profit.
if 1.9920, account 2: sell 12; if 1.9920, close all positions and take profit.
if 1.9930, account 1: buy 24; if 1.9940, close all positions and take profit.
if 1.9920, account 2: sell 48; if 1.9920, close all positions and take profit.
if 1.9930, account 1: buy 96; if 1.9940, close all positions and take profit.
if 1.9920, account 2: sell 192; if 1.9920, close all positions and take profit.
until fund not enough, take some loss, the worst case is loss half of the total positions, not all.
Hi,
My name is Nasir and I am following your thread, why you closed it, I have this stretegies before one year with the gap of 20 and take profit 40 which was fail in curtern time. from me I thing it is a good strategies I make some twist and it is working fine. I make a gap of 10 and take profit 30 and instead of doubling a lots I go with fibo, like first I will open 0.1, then 0.2,0.3,0.5,0.8,1.3...so on, I make the excel sheet if you have $5000 account you can go upto 10 steps after ten steps the margin will not met so better on 8th step atleast we can have a something like breakeven in this case a move of about 18pips will give us breakeven
Hi,
My name is Nasir and I am following your thread, why you closed it, I have this stretegies before one year with the gap of 20 and take profit 40 which was fail in curtern time. from me I thing it is a good strategies I make some twist and it is working fine. I make a gap of 10 and take profit 30 and instead of doubling a lots I go with fibo, like first I will open 0.1, then 0.2,0.3,0.5,0.8,1.3...so on, I make the excel sheet if you have $5000 account you can go upto 10 steps after ten steps the margin will not met so better on 8th step atleast we can have a something like breakeven in this case a move of about 18pips will give us breakeven
Thanks for your constribution
Nasir
Why not have a fibo exit as well for a quick exit?
martingale is a very risky strategy even with tiny lots ....i guess we should focus on where we should put the gap coz we dont care if the market goes down or up but we care if the market stay flat and jumping in the gap so i guess we should concentrate on support and resistance level where we know that there wont be a flat market..
I demo lived martingales a thousand times with about a zillion get ins.
Very tough to make money... The market takes a turn and you miss your take profit and Whamo.! A martingale that keeps in the trade and increases profit is the best option but i am still working on.
Market flat is very hard to determine with indicator...flat is defined as what? let me know and I will program it in..there are tons of martingale eas out there. http://www.forexmt4.com/_MT4_Experts/
here is a list for ya all. 10.3 is the martingales..You can throw ea's on your charts until your blind!!
This strategy is only buy-long. Applicable for up trend market.
When price goes down, the buy-long breakout price will be adjusted lower.
When loss, the next lot size is increased according to 1,1,2,3,5,8,13...
SL=Range, TP=2xRange.
In the down trend market, Sliding-Up/Selling-Short Breakout should be used. Or maybe better if you have two accounts, one buying-long, one-selling-short.
I think it can be further improved. Any suggestion is welcome.
SmartQuant code is attached:
Quote:
using System;
using System.Drawing;
using OpenQuant.API;
using OpenQuant.API.Indicators;
public class MyStrategy : Strategy
{
[Parameter("Range(pip)")]
public double Range;
[Parameter("Qty")]
public int Qty = 25000;
public double High = 0;
public double Low = 0;
[Parameter("Close positions on strategy stop")]
public bool CloseOnStop = true;