Announcement

Collapse
No announcement yet.

a mark of closing pos. end of day

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • a mark of closing pos. end of day

    i am using 5 min bars and through the wizard i get the signals as i want them, but:
    1. there is no sign for the close of the pos. end of day like a down arrow for the sell of my long pos (in the wizard and in the backtesting it sells end of day)
    2.how can i ser a profit target? like of the stock goes up 1 point than sell?
    3. how can i add a rule that allows buying only if time > 10:00 eastern?
    thanks

  • #2
    giladbi
    1. In your efs you need to include the logic to draw the graphics. For examples on how to do this see the Guide to Developing EFS Graphics in the EFS KnowledgeBase
    2. For examples on how to do this see the Guide to Developing EFS Strategies in the EFS KnowledgeBase
    You may also want to read through the other guides available in the KnowledgeBase such as the one on the Strategy Analyzer
    3. You would add that condition as part of the conditional statement that triggers a trade. For example
    if((getHour(0)*100)+getMinute(0)>1000) etc
    Alex

    Comment

    Working...
    X