- Search Energy EXCH
- fxid10t replied Nov 4, 2007
s/r — I've been working on a trendline indicator, attached, it is still beta, still trying to perfect it...
support resistance indicator
- fxid10t replied Nov 4, 2007
S/R — In my humble opinion, support and resistance is somewhat subjective to the chart viewer's perspective. Obvious highs and lows are resistance and support, but there is also diagonal support and resistance observed with trend line use. ...
support resistance indicator
- fxid10t replied Nov 4, 2007
weekly/monthly pivots — here's one i've put together for weekly pivots, show's the previous two period highs/lows plus Demark projected High's & Lows... it is not yet Sunday data corrected for daily pivots...
Pivot
- fxid10t replied Oct 28, 2007
Howdy all, just messing around, added a few of my favorite tweaks... results on IBFX (Alpari supplemented) 5m EURGBP data attached. trades both long and short, and added user variable stop order expiration time.
The Bounty EA
- fxid10t replied Aug 7, 2007
Tried this, comparing the variable to the OrderStopLoss() or OrderTakeProfit(), and the reverse, comparing the OrderStopLoss(TakeProfit)() to the variable, if not equal, modify, still error 1 is triggered...
OrderModify - Error code 1
- fxid10t replied Aug 7, 2007
open positions — screen shot attached
Convergence/Divergence (wip5.51.ex4)
- fxid10t replied Aug 7, 2007
error 1 — Still working on it... I'm afraid the solution is going to be more code to loop through the orders to see if they need to be modified before looping through to modify them. Big ol pain in the arse.
OrderModify - Error code 1
- fxid10t replied Aug 1, 2007
live trades — screenshot of relevant live trades
Convergence/Divergence (wip5.51.ex4)
- fxid10t replied Aug 1, 2007
update — //external variables extern int TradePeriod =0; // chart period extern int RSIPeriod =13; // number of RSI bars (period) extern double Lots =0.05; // raw lot value extern bool UseMM =false; // if false, "Lots" value used. extern ...
Convergence/Divergence (wip5.51.ex4)
- fxid10t replied Jul 18, 2007
i'll look at them over the weekend...
Convergence/Divergence (wip5.51.ex4)
- fxid10t replied Jul 17, 2007
The formula is BWI = ( UB – LB ) / MB, from the article posted at url . Attached is the source code. Modify as you wish. regards, t.
Bollinger Bandwidth indicator
- fxid10t replied Jul 17, 2007
Uncheck "optimization." Regarding testing & optimization, please see: url
Convergence/Divergence (wip5.51.ex4)
- fxid10t replied Jul 15, 2007
order placement modification — Modification fixes an order placement bug that occurs after initialization. 51c will place an order no matter how old the last signal is, 51c1 will place the order only if the signal is less than 24 hours old.
Convergence/Divergence (wip5.51.ex4)
- fxid10t replied Jul 15, 2007
I use interbankfx.com. But first, try setting the external variable "Lots" to 1, and "LotMultiplier" to 1 before downloading IBFX's demo platform.
Convergence/Divergence (wip5.51.ex4)
- fxid10t replied Jul 15, 2007
latest update 5.51c — This file will "back plot" past convergence/divergence. This is intended to avoid internal variable value loss due to an interuption in the execution of the expert, eg, "re-"initialization due to chart period change, pc ...
Convergence/Divergence (wip5.51.ex4)
- fxid10t replied Jul 15, 2007
5.51b — modification //set lots Margin=MathMin( MathMin(AccountBalance(),AccountEquity()) , AccountFreeMargin() ); if(Margin > Balance) { Balance = Margin; } lots=NormalizeDouble( (Balance/100000)*LotMultiplier , 2); if(lots<Lots) lots=Lots; ...
Convergence/Divergence (wip5.51.ex4)
- fxid10t replied Jul 12, 2007
It is arbitrary, I want to avoid the variation in lot size caused by drawdown/shortterm (un)realized losses, so that as the average account balance increases, then traded lots increase...and currently traded lots have the chance to recover losses, ...
Convergence/Divergence (wip5.51.ex4)
- fxid10t replied Jul 12, 2007
Thanks SMJ, The existing code is similar, instead of percent risk, it trades 0.01 lot per $1000.00 equity, with the option to increase based on the tolerances of the user... extern double Lots =0.05; // extern double LotMultiplier =15.0; // Base Lot ...
Convergence/Divergence (wip5.51.ex4)