| stevehopwoodforex.com https://www.stevehopwoodforex.com/phpBB3/ Print view |
|
| 10.3 SCALPER/RANGE TRADE SYSTEM https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?t=919 |
Page 59 of 178 |
| Author: | disbellj [ Sat Nov 17, 2012 6:29 pm ] |
| Post subject: | Re: 10.3 SCALPER/RANGE TRADE SYSTEM |
Zoom out, still big difference. |
|
| Author: | disbellj [ Sat Nov 17, 2012 6:51 pm ] |
| Post subject: | Re: 10.3 SCALPER/RANGE TRADE SYSTEM |
You'll note, that when using the correct pivots, that when Bob's setup doesn't work out and price goes other direction (if DP is above DO, price shoots up or vice versa, the exact opposite of Bob's system, to get both types of trades and have TP for both Just thought I'd share that since I've used previous opens as TP targets for along time (in my brain only really, other than making the Open indicators I have, which now I know are all wrong and need updated, which is a considerable if not impossible task to make all TFs aligned among brokers, with H4 being the one that would be impossible if any). Just very scatter-brained. So I as a programmer and as a trader are two different things, and what I know and how I actually suck at trading are two different things. I hope by being here and sharing, that my trading will improve drastically. Thank you for sharing Bob. Kindest regards, Don |
|
| Author: | disbellj [ Sat Nov 17, 2012 6:59 pm ] |
| Post subject: | Re: 10.3 SCALPER/RANGE TRADE SYSTEM |
I edited the last post (in fact I do edit about every post I make, to refine after the initial time posting), so please make sure to read even if you've already read it. Also, note that sometimes, price will try one setup and then not work out and try the other, up to 3 changes, such as (Bob-Don-Bob or Don-Bob-Don). Hope I've made myself clear. Just check out right hand side on last pic I posted and study it to try and see what I'm saying. Kindest regards, Don |
|
| Author: | disbellj [ Sat Nov 17, 2012 7:02 pm ] |
| Post subject: | Re: 10.3 SCALPER/RANGE TRADE SYSTEM |
Man, just looking at that one pick shows we could catch a profitable trade on both setups sometimes because of the volatility, or go to S2/R2 with Bob's. It's just exciting to see something that I can actually tell you that you can re-create on your broker since you now have the tool. Kindest regards, Don |
|
| Author: | disbellj [ Sat Nov 17, 2012 7:41 pm ] |
| Post subject: | Re: 10.3 SCALPER/RANGE TRADE SYSTEM |
Actually, I was able to make some sorta code in the lat 40 minutes since last post, and came up with the following for a BobDon system: Goal: Create an always in the market robot with high win rate that is truly set-and-forget. Note: May require 2nd internet connection with backup phone line at user's site, so that if internet goes down, email uses 2nd line to contact user that emergency is happening, and Empty4 needs attention immediately. Since progress in phone and tablet technology thanks mainly to Apple, this should be able to be easily done with a phone or tablet. Otherwise, robot will be a good worker that needs no sleep, food, maintenance, intervention, etc., duplicable across as many criminals as the user wants, creating an "employee" in every instance with literally no new overhead. Can you tell I've been thinking about this for while and why I give God glory? He's been instrumental in my thinking and progress I have made in my MM code, well everything, even every breath). // Note Only one trade per bar allowed. // Note: j is the variable I use to go through all pairs, so when you see j in parenthesis or bracket, it means to get the information on that pair or do that action to the pair. for(int j=0;j,length;j++) { if(DO[j] > DP[j]) { if(iClose(AlphabeticalSymbol[j],Period(),0) > DO[j]) { // Close on 0 bar is used instead of MarketInfo to get pai's Bid) if(DonBuyTradeIsOpen(j)) CloseDonBuyTrade(j); OpenBobBuyTrade(j); TradePerBar[j] += 1; SL[j] = DP[j]; //below DP, NOT equal to TP1[j] = R1[j]; TP2[j] = R2[j]; if(iClose(AlphabeticalSymbol[j],Period(),0i) > DP[j]) {// Close on 0 bar is used instead of MarketInfo to get pai's Bid) if(BobBuyTradeIsOpen(j)) CloseBobBuyTrade(j); OpenDonBuyTrade(j); TradePerBar[j] += 1; SL[j] = DO[j]; // above DO, NOT equal to TP1[j] = The one that is lower(yesterday's open or R1); TP2[j] = The one that is higher(yesterday's open or R1); } } } else if(DO[j] < DP[j]) { Sells are opposite. } } This code should be able to be used along with my existing code to make EAs that trade all pairs at once. I have a shell that I can revise if needed to do this, or I have a CurrencyTraderEA I made that I can incorporate Steve's code and/or Bob's numbers to make the EA for testing. Please just let me know. The "face" of the EA of course would be what people right now see using the indicator (except the numbers corrected in areas where they are not now). Note: The indicator is DEMO at this point, and I would not want people taking trades based on it until we know the information is correct. I do think the OpenPivotSR indicator is able to be used at this point though. Hope people are seeing what I'm getting at here Kindest regards, Don |
|
| Author: | disbellj [ Sat Nov 17, 2012 11:47 pm ] |
| Post subject: | Re: 10.3 SCALPER/RANGE TRADE SYSTEM |
A member from another thread asked me to come over there and take a look. Here is my response to all such requests at this time: I really don't have time. I want to work on 10.3 and finish, since so many things use daily open price and daily pivot and its S/R. I don't even have enough money to buy what I need, so really won't be working much on anything since I don't have a job. Just like I tried in my own forum (personal email list group), asking for donations has led almost nowhere (one person has donated), and why I shut down my personal email list group and came here. I either: 1. Gotta get a job because I can't even afford cigs any longer, and not spend time on Forex and coding like I want to and would help everyone. 2. Get enough donations to last until I can become profitable hopefully shortly (only need a couple hundred a week to survive, whether it comes from Forex trading, donations), thereby able to continue spending a lot of time on Forex and coding like I want to and would help everyone. I can do 1 above if I need to, but my giving will go down drastically and development will just take longer. I can do a combination of 1 and 2 above, but my giving will go down (maybe) drastically and development will just take longer. I can no longer afford to do number 2 waiting on donations, giving everywhere freely, as I have been for a very long time before I even came here, so... ... guess I'll get back to this if/when time permits. This is not against anyone whatsoever. I want to code and trade. I want to be able to continue giving freely just as I have done on multiple other forums over the years. But I need to make money. One is a want. One is a need. Kindest regards, Don |
|
| Author: | POH [ Sun Nov 18, 2012 12:02 am ] |
| Post subject: | Re: 10.3 SCALPER/RANGE TRADE SYSTEM |
Sorry I missed lots of the talk about Dons work. Just wanting to make sure that the time thing is all automatically done. |
|
| Author: | Jemook [ Sun Nov 18, 2012 9:15 am ] |
| Post subject: | Re: 10.3 SCALPER/RANGE TRADE SYSTEM |
Don, if you have the means to get a job then get one! Your first priority should be putting food/cigarettes on your table instead of crying poor on a public forum for donations. Many of us work 9-5 and fuel our forex passions after work hours - I suggest you do the same. Threatening to not continue your indicator/EA work because people aren't donating money to you is offensive to all the people on the forum who help others for free. Where's the eye roll emoticon when you need one.. |
|
| Author: | Mike [ Sun Nov 18, 2012 10:15 am ] |
| Post subject: | Re: 10.3 SCALPER/RANGE TRADE SYSTEM |
Hi disbellj Life sometimes does not allow us to do what we like to do. Your choice might seem quite difficult, but you may be forced to do, what you did not intend to do. You need a job, you're good at coding, so there might be somebody in the forum, who could indicate you a job, a part-time job, an assignement, well something you might even like to do - who knows. In the meantime, just don't give up please. Thanks Mike |
|
| Author: | retireme [ Sun Nov 18, 2012 12:08 pm ] |
| Post subject: | Re: 10.3 SCALPER/RANGE TRADE SYSTEM |
Is this what you are looking for Jemook? ![]() |
|
| All times are UTC | Page 59 of 178 |
|
Powered by phpBB® Forum Software © phpBB Limited |
|