- Search Energy EXCH
- 3,858 Results (90 Threads, 3,768 Replies)
-
Ronald Raygun replied Jun 23, 2008Ok, I'm absolutely stumped on this one, I need your help. Here are the variables that the entry program is using. double PSAR = iSAR(NULL, 0, 0.03, 0.2, Current + 0); double AC1 = iAC(NULL, 0, Current + 0); double AC2 = iAC(NULL, 0, Current + 1); ...
AshFX Daily
-
Ronald Raygun replied Jun 22, 2008No luck. Try going through the code if you can. You may see something I've missed.
AshFX Daily
-
Ronald Raygun replied Jun 22, 2008Remember that the system was designed largely for the commodities markets back in the 80s. You'd just need to change the period on the donchian channels in order to accommodate for the forex market.
Dennis' Turtles
-
Ronald Raygun replied Jun 20, 2008Though that may be true, keep in mind that the whole premise of quantitative trading and technical analysis is to find distinct, repetitive features in the market, which makes my bread and butter. This isn't to say technical analysis is superior, to ...
Any pin will do?
-
Ronald Raygun replied Jun 20, 2008The problem would be in the order criteria, not the EachTickMode function. I'm still going through the order entry. Something isn't matching up.
AshFX Daily
-
Ronald Raygun replied Jun 20, 2008I'm wondering how you all quantify a pin bar. I have always thought a "short" pin bar had an upper wick that is at least 4 times the body length, and a lower wick that is less than the body length.
Any pin will do?
-
Ronald Raygun replied Jun 19, 2008Definitely, I'm looking into this. Out of curiosity, when is the EA taking the trades? Is there a pattern?
AshFX Daily
-
Ronald Raygun replied Jun 19, 2008I guess this was on the AshFX EA? and not the Entry-Only EA? It's supposed to open two orders.
AshFX Daily
-
Ronald Raygun replied Jun 19, 2008I assure you that EachTickMode works properly. Allow me to explain those bits of code: ((EachTickMode && !TickCheck) || (!EachTickMode && (Bars != BarCount))) If EachTickMode is true and there is a new tick, OR EachTickMode is false, and there is a ...
AshFX Daily
-
Ronald Raygun replied Jun 19, 2008My EA takes the signals as it sees them. Bull, is this "Time Window" an absolutely important part of your system?
Trend Finder Daily
-
Ronald Raygun replied Jun 18, 2008That begs the question then: What kind of trading system requires little capital? Scalping comes to mind =D
Trend Finder Daily
-
Ronald Raygun replied Jun 18, 2008If the capital you have doesn't suit this system, I suggest you put this system on the backburner, and take up scalping, or news straddling, because inadequate capital is a good cause of many failures.
Trend Finder Daily
-
Ronald Raygun replied Jun 17, 2008Looks like you're in the complete trading system. AshFX as opposed to AshFX Entry Only. The code ifgnores Takeprofit and Stoploss, and replaces those with the high/low where appropriate. The trailing stop function will override the existing SL. If ...
AshFX Daily
-
Ronald Raygun replied Jun 17, 200810 bil divided by my 500:1 leverage is 20 million. I figure the more prominent members here have million dollar accounts and tack on my $30k account and a few others. Basically, I tried to get a best-case scenario. Clearly, the real value will ...
How many traders are there?
-
Ronald Raygun replied Jun 17, 2008I doubt that we have any impact on the market. Here's why: Retail brokers account for 25-50 billion in daily volume on the forex market. Add on the other banks, hedge funds, etc, and the daily volume comes out to 1 trillion. It's safe to assume that ...
How many traders are there?
-
Ronald Raygun replied Jun 17, 2008It's there don't worry. It's through the EachTickMode feature. If set to true, the EA will take a signal as soon as it sees one. If set to false, the EA will take a signal at the end of the bar. Some people think it's better to enter when you see ...
AshFX Daily