- Search Forex Factory
- 92 Results (1 Thread , 91 Replies )
- charlies replied May 6, 2008
mil2004, It can't alert on QQE crosses. If you set: AlertsTLine = true; AlertDist = 10; then it will alert you when it gets within 10 pips of any trendline that you have on the chart.
Tesla's Fancy Shmancy Alerting EA
- charlies replied Jan 25, 2008
Tesla's Alerting Indicator — Tesla, I liked this indicator so much, that I have extended it a little: - it can now alert on rectangles, fib retracements & fib expansions (as well as trendlines) - there is no need to add a description to the ...
Tesla's Fancy Shmancy Alerting EA
- charlies replied Jan 22, 2008
You can either: write an EA that makes decisions based on other timeframes & you can review the rules and trades in Strategy Tester or create Multi Time Frame indicators so that you can see the value of the indicators in VHands or Strategy Tester
Backtesting multiple timeframe strategies on mt4
- charlies replied Jan 15, 2008
image Pin bars-advanced.pdf Oct 7, 2006 11:48am 112.7 KB 679 image Pin bars-introduction.pdf Oct 7, 2006 11:48am 175.2 KB 854
james16 Chart Thread
- charlies replied Jan 9, 2008
Rod, No special set up is needed (other than to adjust entry & stop distances for more volatile currencies). Remember that it is valid for the EA to place orders & then cancel them depending on how it is set up: As stated previously, it is better to ...
EA for trailing stops
- charlies replied Dec 17, 2007
I think that one of the conditional statements above your entry is triggering invoking return(0) before it ever gets to your entry. That is why I suggested using print statements to see which one is triggering & what values are triggering it. I ...
EA Won't Execute ... any suggestions?
- charlies replied Dec 17, 2007
PipParade, The best thing to do is check your journal & experts log to see if that gives you a clue. If it doesn't, add some print statements to the code to print out values & to show you what the EA is doing & where it is going wrong. e.g. if(ADXC ...
EA Won't Execute ... any suggestions?
- charlies replied Dec 14, 2007
It isn't just a matter of multiplying for EMAs - that would work for a simple moving average but would not give an exact value for an exponential MA. I attach an indicator that will display the exact value of a 4 hour EMA on any chart timeframe. Put ...
Moving averages: A 4hr 18EMA = ? EMA on a 1hr chart...
- charlies replied Dec 14, 2007
You calculation for stoploss (Bid + StopLoss*Point) & takeprofit (Ask - TakeProfit*Point) is incorrect for a long trade
EA Won't Execute ... any suggestions?
- charlies replied Dec 6, 2007
Not sure why it is stepped, had the set-up/chart for quite a while & never questioned it. I think it is showing the weekly stoch based on the weekly close, so it is adjusted once each week. Most of the time, I use the hourly chart for entry, I'm ...
The Art of Trading with MTF Stochastics
- charlies replied Dec 6, 2007
USDJPY Daily - possible Rubberband Set-up — USDJPY daily chart - possible rubberband set-up
The Art of Trading with MTF Stochastics
- charlies replied Dec 5, 2007
MPP, I have amended the code to place multiple add on trades when an initial trade is triggered. MultiTrades=false; - set to true for add-on trades MultiTradeLots=0.5; - set lots per add on trade MultiTradeDistance=50; - set distance between add on ...
EA for trailing stops
- charlies replied Dec 5, 2007
I look for the trade to set up on the stochastics (i.e. separation of the stochs), but look for price action to confirm the trade & for entry. Daily stoch had set up as overbought against the weekly, so then looking for a short entry on the lower ...
The Art of Trading with MTF Stochastics
- charlies replied Dec 5, 2007
.... and just over 1 hour later:
The Art of Trading with MTF Stochastics
- charlies replied Dec 5, 2007
Now set up on lower timeframes this morning, took entry at 226.90 on break of 1 hour pin bar. Will look to hold part of this position to capitalise on daily set up.
The Art of Trading with MTF Stochastics
- charlies replied Dec 4, 2007
GBPJPY Possible Rubber Band — Possible rubber band set up on GBPJPY daily chart:
The Art of Trading with MTF Stochastics
- charlies replied Nov 28, 2007
Count me in - which software are you using?
The "Better" neural network
- charlies replied Nov 12, 2007
It is possible, here is a starting point: //Input Values extern int SPREAD = 5; extern int ENTRY = 3; extern int STOPDIST = 20; //Calculate Line Positions SLprice1=..... R1price1=..... //Draw Lines ObjectCreate(SL, OBJ_HLINE, 0, SLprice1); ...
Horizontal Line Drawing