I would prefer the original format. but we can test it the way it is and after were done I can just make the changes later. Reason for asking, I was going to run it on multiple charts (intervals) that I have set-up. Just trying not to throw myself on my orignal strategy during market hours while monitoring this one. I'll see if I can get my other network up and running.
allow the individual indicator signals to be displayed as well...
Let me clarify. What I mean is doing something like adding different colored arrows to the bottom of the price pane to indicate when say the CCI goes long (up green arrow) or short (down green arrow) or the stoch goes long (up black arrow) or down (down black arrow). etc..
If you add a button to turn this on and off, then it will help with seeing if the systems signals are firing correctly and if not which ones are causing the problem.
Since this will cause your new nice clean looking GUI to look messy - you might call it the button "messy mode" - or "debug mode" or "Show all Signals" if you wish to be clearer and but less humorous.
I use this technique all the time for my multiple indicator studies, and it usually pays off big time at some point.
The issues you raise were exactly what I was concerned about with the simple
setup Gavishti was referring to.
I think you do need a way to see if the indicators are doing what you think
they are doing, so when the time comes to simplify, the simplification
doesn't mess up the system.
----- Original Message -----
From: <[email protected]>
To: <[email protected]>
Sent: Sunday, December 14, 2003 5:57 PM
Subject: Reply to post 'Signal clarity'
After we get further in this I would suggest dropping all the idicator panes except the Fgall one. And maybe just adding the the current ratio's of each indicator is currently at and then color coding the text all into one study window. Saves alot of space.
You said it! I am going to wait til later tonight to do more backtesting. We have so many changes in the files, I want to make sure I have the right ones.
if(profit<-10)exit now
if(profit>10)take money and run
do we re enter another long if we just went long or do we wait for the next
short, just like the sar method used before?
*/
what do I use? Strategy.doSell for long exit and Strategy.doCover for
short exit
Possible Profit Exit on a long
Strategy.doSell("Close Long", Strategy.MARKET, Strategy.THISBAR,
Strategy.ALL, entry+10);
Possible Profit Exit on a short
Strategy.doCover("Close Short", Strategy.MARKET, Strategy.THISBAR,
Strategy.ALL, entry+10);
Comment