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.

bobbakerr

Members
  • Content Count

    2
  • Joined

  • Last visited

Personal Information

  • First Name
    Bob
  • Last Name
    Baker
  • Country
    United States

Trading Information

  • Vendor
    No
  1. Maybe this will help: (And by listing the Variables as Inputs, you can then Optimize them to see which times are best) Inputs: Beg1(0200), Quit1(1700), Exit1(1700), Beg2(1700), Quit2(0200), Exit2(0200), // {etc.} If DayOfWeek(Date)=1 {Monday} and Time >= Beg1 and Time < Quit1 then begin // (Code) end; If MarketPosition=1 and DayOfWeek(Date)=1 and Time = Exit1 then Sell this bar at Close; If MarketPosition=-1 and DayOfWeek(Date)=1 and Time = Exit1 then BuyToCover this bar at Close; If DayOfWeek(Date)=2 {Tuesday} and Time >= Beg2 and Time < Quit2 then begin // (Code) end; If MarketPosition=1 and DayOfWeek(Date)=2 and Time = Exit2 then Sell this bar at Close; If MarketPosition=-1 and DayOfWeek(Date)=2 and Time = Exit2 then BuyToCover this bar at Close; // etc., for Wednesday through Friday if using different Entry and Exit times than Monday and Tuesday.
  2. I often notice what you observed. I trade CL and it's 'fun' to watch the price whoosh right through those huge orders. I came to the conclusion years ago that Price tends to move towards the Volume. The larger the Volume the more the Price will move to it, and usually take those orders out. And then keep going. I believe it's the really Big Money seeing many contracts or shares readily available, and these Big Boys will take the price in that direction to accumulate huge Long positions or huge Short positions. It's a legal way to manipulate the market. But you need a TON of money to do it!
×
×
  • Create New...

Important Information

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