Quote from droskill:
Sorry should have been more specific - what I find challenging is the idea of getting data into the program on a regular basis. I can do one-off tests no problem, but if I want to have, say, the data for the SPY sucked into Excel every day and have my spreadsheet update correctly, I end up doing a ton of manual work. While on the other hand, once I've got a system built in Tradersstudio, I can just run it again.
Quote from TraderSystem:
Can you explain to me Entry and Exit order combinations with named signals. I want a given exit to only exit a given entry?
If Close>Average(Close,30,0) then Buy("SignalName1",1,0,market,day)
Buy("SignalName2",1,Highest(High,20,0),stop,day)
Exitlong("LESign1","SignalName1",1,lowest(Low,25,0),stop,day)
Quote from Gyles:
Please may I know as to whether there is any way to disable a given entry after you exit it on a protective stop?