- Search Energy EXCH
-
Pipologist replied Jun 11, 2014At first I thought there were 15 (16 minus F F F F, or O O O O). From a mathematical perspective that would be true, since there are 4 binary combinations... 2x2x2x2 However, there are other tradable combinations...for example for the AB ...
MT4 List or Array?
-
Pipologist replied Jun 11, 2014The amount of DD that one can handle is proportionate to the risk tolerance of each person at any given time. FYI the DD of this system, EA, can be lowered, however the return would be lower, however the equity curve would also be smoother. For $500 ...
$500 to Million in 11 months - Higher Risk vs. Higher Reward EA
-
Pipologist replied Jun 11, 2014So I'll make a spreadsheet with EVERY possible buy combination tomorrow and then delete duplicates which should give me the real total of buy combinations. I think it's more than 15 not including zero. Mathematically in an array there would be 15, ...
MT4 List or Array?
-
Pipologist replied Jun 11, 2014As you said there are 8 possible combinations per letter mathematically. However, if you add these up into possible buy scenarios, there are more combinations. Here's an example: For A combinations: Buy if 1. A O O O 2. A B O O 3. A O C O 4. A O O D ...
MT4 List or Array?
-
Pipologist replied Jun 11, 2014I haven't coded that way before so I have to really practice and learn it. But your comments got me thinking even more about this. There is one extra permutation of "Buy Signal" per letter combination (using just 8 in our example would be 8 + 1). ...
MT4 List or Array?
-
Pipologist replied Jun 11, 2014Thanks for the idea. I wouldn't know how to implement that but it got me thinking... Since there are only 15 combinations of buys, just have a extern int of "buysignalvalue" 1 through 15. And then, show either if (buysigvalue == 1) buysigA formula ...
MT4 List or Array?
-
Pipologist replied Jun 11, 2014Ahhh...ok; I know the maximum possible outcomes. I'm not sure if I need to insert elements at arbitrary positions. For now I think I don't. Just want to check 16 possibilities and test and see which if any produces a significantly better outcome.
MT4 List or Array?
-
Pipologist replied Jun 11, 2014I have four separate simple buy signals. They are set as boolean. Each signal on it's own can generate a signal which equals 4 possibilities for testing. When all possible signal combinations are combined there are 16 possibilities (4 to the power ...
MT4 List or Array?
-
Pipologist replied Jun 10, 2014Thanks for the input. I have to wrap my head around that one and work through the logic. Your coding input is always spot on and I appreciate it. I just need to think this one through. It's not something I thought of or seen before. You say I don't ...
MT4 List or Array?
-
MT4 List or Array?
Started Jun 10, 2014|Platform Tech|24 replies
Which is better / easier.... list or array? Ex: I have 4 separate entry conditions and want to ...
-
Pipologist replied Jun 9, 2014Don't know if your stat is accurate, but "they" in your sentence, that is "businesses that hedge risk with spot fx" probably don't put money in blindly. They have an idea of where they want to lock in a rate for their business. Do they use technical ...
Real Reasons why Retail Traders lose money
-
Pipologist replied Jun 9, 2014As stated in an earlier post, just wanted some commentary. Sometimes, there are other useful or interesting posts. Thread closed.
$500 to Million in 11 months - Higher Risk vs. Higher Reward EA
-
Pipologist replied Jun 9, 2014Thank you for your help. Sorry to trouble you. I appreciate the input. I'm going to have to wrestle this out on my own. I generally don't post code exactly as is, since it would show my buy algorithms which I have over 5 years invested in.
How to create a hidden simulated limit order in MT4?
-
Pipologist replied Jun 9, 2014The order send goes to a market order which works as is. Getting no errors.
How to create a hidden simulated limit order in MT4?
-
Pipologist replied Jun 9, 2014This is what I tried. Not sure what I'm doing wrong here... { if (Dn Signal) double DnBuySignalPrice = (Bid + Spread) - (LP + Spread); double DnSellSignalPrice = Bid + (LP + Spread); if (Up Signal) double UpBuySignalPrice = (Bid + Spread) - (LP + ...
How to create a hidden simulated limit order in MT4?
-
Pipologist replied Jun 9, 2014How would you go about testing this using Bid/Ask as stored prices after entry trigger? Does the MT4 tester recognize it? Actually I also realized in my initial example, I said 7.5*point, but it should have been 75*point or 6.0 pips plus 1.5 pip ...
How to create a hidden simulated limit order in MT4?
-
Pipologist replied Jun 9, 2014Thanks for the suggestions. But I've given up for the day after over 8 hours of attacking this thing. My challenge is that I have over 30 buy and sell routines PER SIDE and each buy or sell signal generates corresponding alternate sells and buys. I ...
How to create a hidden simulated limit order in MT4?
-
Pipologist replied Jun 9, 2014This is really difficult.
How to create a hidden simulated limit order in MT4?
-
Pipologist replied Jun 9, 2014Starting to make some progress here with the last code examples suggested by MaxDoom. I'm not still not able to simulate the order action of using a buylimit but I think it's becuase my EA is a bit complex sending multiple buy and sells at the same ...
How to create a hidden simulated limit order in MT4?