- Joined
- Sep 18, 2024
I am definitely not your friend.You are right at home, my friend.
Maybe this website can start offering a new service where you could come here and pay $5 and argue with a tranny for 5 minutes.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I am definitely not your friend.You are right at home, my friend.
I briefly skimmed through itYou should check out this thread, this guy may be on to something
That reminds me, you owe $10Maybe this website can start offering a new service where you could come here and pay $5 and argue with a tranny for 5 minutes.
With respect, those are rookie numbers. Bossman Jack can lose that much in 3 rolls of the dice inside 10 seconds.I was long on a penny stock game company called take. They had this massive cheating scandal where one of their players was basically set to always lose. The fact that they were rigging games made their stock price become essentially worthless. lost about 31k in 5 minutes rolling the dice on that shitty game company.
Genius//gogo
double wantlots=0;
double baselots=0.01;
double mx1=1;
double mx2=2;
if( pos>10 ) wantlots+=(baselots*mx2);
if( pos>12 ) wantlots+=(baselots*mx2);
if( pos>14 ) wantlots+=(baselots*mx2);
if( pos>16 ) wantlots+=(baselots*mx2);
if( pos>18 ) wantlots+=(baselots*mx2);
if( pos>20 ) wantlots+=(baselots*mx2);
if( pos>22 ) wantlots+=(baselots*mx2);
if( pos>24 ) wantlots+=(baselots*mx2);
if( pos>26 ) wantlots+=(baselots*mx2);
if( pos>28 ) wantlots+=(baselots*mx2);
if( pos>30 ) wantlots+=(baselots*mx2);
if( pos>32 ) wantlots+=(baselots*mx2);
if( pos>34 ) wantlots+=(baselots*mx2);
if( pos>36 ) wantlots+=(baselots*mx2);
if( pos>38 ) wantlots+=(baselots*mx2);
if( pos>40 ) wantlots+=(baselots*mx2);
if( pos>42 ) wantlots+=(baselots*mx2);
if( pos>44 ) wantlots+=(baselots*mx2);
if( pos>46 ) wantlots+=(baselots*mx2);
if( pos>48 ) wantlots+=(baselots*mx2);
if( pos>50 ) wantlots+=(baselots*mx2);
if( pos>55 ) wantlots+=(baselots*mx2);
if( pos>60 ) wantlots+=(baselots*mx2);
if( pos>65 ) wantlots+=(baselots*mx2);
if( pos>70 ) wantlots+=(baselots*mx2);
if( pos>75 ) wantlots+=(baselots*mx2);
if( pos>80 ) wantlots+=(baselots*mx2);
if( pos>85 ) wantlots+=(baselots*mx2);
if( pos>90 ) wantlots+=(baselots*mx2);
if( pos>95 ) wantlots+=(baselots*mx2);
if( pos>100 ) wantlots+=(baselots*mx2);
if( pos>105 ) wantlots+=(baselots*mx2);
//Print("wantlots=",wantlots);
//wantlots=0;
if(GlobalVariableCheck("DISABLED")) wantlots=0;
//if(AccountMargin()==0 && pos<40) wantlots=0;
//if(AccountMargin()==0) wantlots=0;
//GlobalVariableDel("DISABLED");
if(AccountFreeMargin()<(AccountBalance()*0.10)) wantlots=0;
on a buy grid(like we are on now) pos=targ-ask;Genius![]()
Why do you have dozens of if statements all just doing wantlots+=(baselots*mx2) ?on a buy grid(like we are on now) pos=targ-ask;
on a sell grid, pos=bid-targ;
as POS becomes larger, it tallies up a larger WANTLOTS value..Why do you have dozens of if statements all just doing wantlots+=(baselots*mx2) ?
btw, i dont know if you are a programmer that is familiar with the "+=" stuff..Why do you have dozens of if statements all just doing wantlots+=(baselots*mx2) ?
What I'm asking is, instead of checking every single if statement to increase wantlots, why not just increase wantlots by a factor of pos?as POS becomes larger, it tallies up a larger WANTLOTS value..
as the price spikes lower(on a buy grid) or higher (on a sell grid), two things happen..
1) the POS value becomes larger, which causes (2) the WANTLOTS becomes larger.
WANTLOTS is the TOTAL LOTS THAT I WANT TO BE IN PLAY...
curlots = CURRENTLOTS
rqlots is how many i want to execute right now.
rqlots=wantlots-curlots
if (rqlots>=baselots) then execute/open a trade for baselots.
if it isnt obvious, if rqlots is less than baselots then no trades will be executed right now.
if (pos > 10 && pos < 50) wantlots += (baselots * mx2) * (ceil(temp_pos / 2) - 5);
else if (pos > 50 && pos < 110) wantlots += (baselots * mx2) * (ceil(temp_pos / 5) + 10);
What I'm asking is, instead of checking every single if statement to increase wantlots, why not just increase wantlots by a factor of pos?
The block of if statements could be replaced by
C:if (pos > 10 && pos < 50) { double temp_pos = pos - 10; wantlots += (baselots * mx2) * ceil(temp_pos / 2); } if (pos > 50) { double temp_pos = pos - 50; wantlots += (baselots * mx2) * (ceil(temp_pos / 5) + 20); // +20 for 10 < pos < 50 }
//gogo
double wantlots=0;
double baselots=0.01;
double mx1=1;
double mx2=2;
if( pos>10 ) wantlots+=(baselots*mx2);
if( pos>12 ) wantlots+=(baselots*mx2);
if( pos>14 ) wantlots+=(baselots*mx2);
if( pos>16 ) wantlots+=(baselots*mx2);
if( pos>18 ) wantlots+=(baselots*mx2);
if( pos>20 ) wantlots+=(baselots*mx2);
if( pos>22 ) wantlots+=(baselots*mx2);
if( pos>24 ) wantlots+=(baselots*mx2);
if( pos>26 ) wantlots+=(baselots*mx2);
if( pos>28 ) wantlots+=(baselots*mx2);
if( pos>30 ) wantlots+=(baselots*mx2);
if( pos>32 ) wantlots+=(baselots*mx2);
if( pos>34 ) wantlots+=(baselots*mx2);
if( pos>36 ) wantlots+=(baselots*mx2);
if( pos>38 ) wantlots+=(baselots*mx2);
if( pos>40 ) wantlots+=(baselots*mx2);
if( pos>42 ) wantlots+=(baselots*mx2);
if( pos>44 ) wantlots+=(baselots*mx2);
if( pos>46 ) wantlots+=(baselots*mx2);
if( pos>48 ) wantlots+=(baselots*mx2);
if( pos>50 ) wantlots+=(baselots*mx2);
if( pos>55 ) wantlots+=(baselots*mx2);
if( pos>60 ) wantlots+=(baselots*mx2);
if( pos>65 ) wantlots+=(baselots*mx2);
if( pos>70 ) wantlots+=(baselots*mx2);
if( pos>75 ) wantlots+=(baselots*mx2);
if( pos>80 ) wantlots+=(baselots*mx2);
if( pos>85 ) wantlots+=(baselots*mx2);
if( pos>90 ) wantlots+=(baselots*mx2);
if( pos>95 ) wantlots+=(baselots*mx2);
if( pos>100 ) wantlots+=(baselots*mx2);
if( pos>105 ) wantlots+=(baselots*mx2);
//Print("wantlots=",wantlots);
//wantlots=0;
if(GlobalVariableCheck("DISABLED")) wantlots=0;
//if(AccountMargin()==0 && pos<40) wantlots=0;
//if(AccountMargin()==0) wantlots=0;
//GlobalVariableDel("DISABLED");
if(AccountFreeMargin()<(AccountBalance()*0.10)) wantlots=0;
Metatrader has an on-timer function that you can tell it to call it every so many milliseconds and I set it up for like 50 milliseconds so my code runs every 50 milliseconds for practical purposes..Do you have an aversion to loops? Sort of looks like an Alex Mahan design. Very reminiscent of your technical style. Great coder.
Why don't you just go get a job, my friend?i am fully prepared to lose everything, but i am also fully focused on the finish line.
Oh I don't know I can't seem to think of any reasons right now..Why don't you just go get a job, my friend?
I have a mole and a big patch of gray hair on my left testicle.well we dont know you, do you have some identifying information to prove you are credible?
I was always wondering about your pube hair color!I have a mole and a big patch of gray hair on my left testicle.
So all of the sleepless nights that I spent pouring over these numbers and you were snug and your little bed...So you're just gonna come in here and flex your gains, while not giving any of us an opportunity to share in the wealth? Honestly you're making me feel some type of way right now, and it's not a happy type of way.
Okay fine I took you off of ignore status.I was always wondering about your pube hair color!