- Search Metals Mine
- 60 Results (2 Threads, 58 Replies)
- fabje replied Jan 27, 2010
I get an OrderSend error 130. edit: I put your way in my EA like this: bool NewBar() { static datetime lastbar = 0; datetime curbar = Time[0]; if(lastbar!=curbar) { lastbar=curbar; return (true); } else { return(false); } } if (EnableBB==True) { ...
Check based on Bull and Bears
- fabje replied Jan 27, 2010
A little update. I'm now a little bit further, it opens at the right time according the conditions. Only after that trade it doen't set the variable BBSignal back to EMPTY_VALUE. So it keeps saying OP_BUY or OP_SELL according what was first. When ...
Check based on Bull and Bears
- fabje replied Jan 25, 2010
I have it now like this: I have placed the following code at the begin of my code even before int init(). int COUNT = 0; int BBSignal = EMPTY_VALUE; And this code is placed in the: int start() part. for (int i = 5; i > 1; i--) { if(Close[i] > ...
Check based on Bull and Bears
- fabje replied Jan 23, 2010
Can you tell what it exactly does line for line, so I can understand the code? I have the code now like this: int COUNT = 0; for( int i = 5; i > 1; i--){ if(Close[i] > Open[i]) { COUNT = COUNT + 1 ; } else { COUNT = COUNT - 1 ; } } if ...
Check based on Bull and Bears
- fabje replied Jan 23, 2010
When I use the following code: opencheck = iOpen("GBPUSD",PERIOD_H1,0); closecheck = iClose("GBPUSD",PERIOD_H1,0); if (opencheck < closecheck) { Print("This is a Bullish Candle"); BullSignal = EMPTY_VALUE; } if (opencheck > closecheck) { Print("This ...
Check based on Bull and Bears
- fabje replied Jan 23, 2010
Hmm when I do the following: double opencheck = 0.0; double closecheck = 0.0; if (EnableBull==True) { opencheck = iOpen("GBPUSD",60,0); closecheck = iClose("GBPUSD",60,0); if (opencheck > closecheck) { Print("Bearish"); } if (opencheck < closecheck) ...
Check based on Bull and Bears
- fabje replied Jan 23, 2010
I'm now first detecting what kind of candle is was. if (Open[1] > Open[0]) { Print("Bearish"); } When I backtest this I get this kind of results: 2010.01.23 13:26:00 2010.01.18 18:58 EA GBPUSD,H1: Bearish 2010.01.23 13:26:00 2010.01.18 18:57 EA ...
Check based on Bull and Bears
- fabje replied Jan 22, 2010
I see that the [ and ] errors in the code are because these are used for arrays. Anyone here that can help me how it should be done?
Check based on Bull and Bears
- fabje replied Jan 22, 2010
I'm trying it like this now: Creating the booleans. bool b_bullish; bool b_bullish1; bool r_bullish; bool r_bullish1;Set the booleans on false. void bullish() { bool b_bullish = false; bool r_bullish = false; bool b_bullish1 = false; bool r_bullish1 ...
Check based on Bull and Bears
-
Check based on Bull and Bears
Started Jan 22, 2010|Platform Tech|22 repliesI need a check whats based on bulls and bears. I have the basics already: extern bool ...
- fabje replied Oct 8, 2009
Can you share your settings with us? And on what pair are you using it?
THV MTF EA beta testing
- fabje replied Oct 7, 2009
Is it possible with this EA to say when the price is below Coral that only Short trades are allowed and when the price is above Coral only Long trades are allowed? If not is it possible that this could be implemented?
THV MTF EA beta testing
- fabje replied Oct 7, 2009
I have this EA now running for 1 day on these pairs: EURUSD, GBPUSD, USDCHF and USDJPY on the timeframe M15. On USDCHF I have only profit trades as you can see in my post above this on on the results. But on the other pairs I have some winners and ...
THV MTF EA beta testing
- fabje replied Oct 6, 2009
Hi guys, i'm now for about 1 year busy with forex and i'm already busy for 7 month for an EA you can see the results here. I actually need to start a new demo account to start with a newer version of my EA
And I'm also busy to get the feeling of ...The College Trader
- fabje replied Oct 6, 2009
There is already a 1.0 version you can find it [/URL][URL="http://www.forexfactory.com/showpost.php?p=3082205&postcount=1865"]here I'm currently forward testing it you can see the results here
THV MTF EA beta testing
- fabje replied Oct 6, 2009
Select the file and then do right click, open with Notepad.
THV MTF EA beta testing
- fabje replied Oct 6, 2009
Press F7, then save it. After this, click on reply on this forum and you will see: Attachments, click on this, find the file that you just saved, click on the Upload button. And submit your reply.
THV MTF EA beta testing
- fabje replied Oct 5, 2009
Since today I start testing this systeem and had already some profit trades. But I also missed some trades, so it is possible to add a alarm or something when an arrow appears?
THV system, final edition
- fabje replied Oct 4, 2009
Do you still need this? Otherwise I can try to edit the code.
THV RSI_V2 with Alarms --- need help!