Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

tradingforex

Members
  • Content Count

    3
  • Joined

  • Last visited

Personal Information

  • First Name
    marcus
  • Last Name
    cox
  • Country
    United States

Trading Information

  • Vendor
    No
  1. If I get this to work I will try to send you some money ..test maybe tonight ,,,thanks ...
  2. I am wanting to try to use this logic in the code but trade the next bar open off of current trigger to test to see how it would do trading leveraged mutual funds in my 401k ...the current program can buy one day and sell the next ... NxOpen I believe is a dll call ... for next open?? This is what I would guess for the code would look like but did not work.? //this runs on one bar like this needs to run first if marketposition<>1 and Close < Open and Close < close[29] and Range < 1.618 * Average(Range,80) and MarketStrength>-.50 then BuyPosible = true //This needs runs on second bar instead is running this bar if BuyPossible = true and currentbar > Open + 2 * (close-low) + .05 then buy next bar at open ...
  3. The program I have buys and sell off a number + or - the open ... instead of buying there I just want to use it to signal the buy...but at next days open I want to test to see if I can trade leverage index funds on my 401k... note this program buys one day and can sell the next...how much to change the code ... {Counter-Trend Buy} If date=date1 and marketposition<>1 and Close < Open and Close < Close[29] and Range < 1.618 * Average(Range,80) and marketstrength>-.50 then begin Print(Date:6:0," Bear Buy Tomorrow's buy entry stop is "+numtostr(2* (Close-Low)+.05,2) + " points above tomorrow's open"); WriteMsg = "Buy" + "," + numtostr(2* (Close-Low)+.05,2) + "," + "above"; end; if marketposition<>1 and Close < Open and Close < close[29] and Range < 1.618 * Average(Range,80) and MarketStrength>-.50 then Buy("BearBuy") Next Bar at NxOpen + 2 * (close-low) + .05 stop;
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.