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.
Has any one tried using stochastic in conjunction with support/resistance levels to help find true strong levels? For example if you find a support area formed by 2 lower candles to right and left of the support candle and the stochastic was below 20 then this means it is a strong support? I have found this to work very well.
Anybody know how to create script that place Pending Order Buy/Sell with
fix TP and SL at daily R2/R3 or S2/S3 with just drag to the selected chart.
It would be much easier to do it with script rather than do it manually for eg: 28 pairs
I don't want EA because I can't open my PC 24hrs/day. If price didn't hit for example today, I just delete the pending order and wait for tommorow new SnR level.
P&F is most easily. For example.
P&F EURUSD1440 "BoxSize150X3"( 3.25% )HI/LO
Data 1.6038 1.1627 ~69 Month ~2108 Day
2003-11-1300~00
2009-08-2100~00 BJF Trading Group
I looked everywhere and have been unable to find the Percent of Resistance (PCR or POR) indicator for MT4. I know the Dealbook 360 platform has it. Here is some information about it:
indicator Percent_Of_Resistance;
input price = close, period = 12;
draw line("POR");
vars i(number), lo(number), dif(number);
begin
for i := front(price) + period - 1 to back(price) do begin
lo := movmin(low, i, period);
dif := movmax(high, i, period) - lo;
if dif > 0 then
line[i] := 100 * (price[i] - lo) / dif
else
line[i] := 100;
end;
end.
If anybody can write or find this code for MT4 I greatly appreciate it.
I've been manually trading the S&P futures for a few months now and recently started looking at the Euro Fx as a tool to trading the S&Ps due to the very strong correlation between the 2 with the FX leading the S&Ps throughout the session - which leads to the following question - has anyone put together a successful front-running automation strategy for trading the S&Ps based on FX price action?
This isn't really practical from a manual perspective unless what I call a dislocation event occurs in the FX futures (a several tick directional move, 8 or more, in a short period of time of a coulpe seconds or less) in which case I'll immediately put in a market order on the S&Ps as they will follow this move within the next few seconds.
This correlation is anomalous from a historical perspective but will likely persist until the US Fed abandons ZIRP or the $ crashes, whichever comes 1st.
So I'm looking at putting together a system from scratch (my current platform doesn't support trading automation) and am looking at tradestation since it has built-in proprietary support in the form of Easy Language.
I can't get access to the tradestation (I also looked at ThinkorSwim but they don't support auto trading yet) support forums so I thought I'd post here instead.
Looking at the Easy Language docs I've found online it is not apparent to me if its possible to develop a real time tick based strategy based on FX tick data to initiate an S&P market order. All the docs I've looked at talk about bar indicators, not real time data.
I don't have a strong market analytics background and have only been trading for a few months so don't be too critical if what I'm looking at doing isn't possible.
Otherwise anyone familiar with Easy Language or any platform suggestions feel free to comment.