i turned of the reverse in backtester but it is to no avail. 
the main reason I want the staticvars is inorder to tell my system not to put a 
1 in the buy column while in the middle of a short trade. THis primarily for my 
chart, all the arrows get messed up. it shows a long enter arrow while in the 
middle of a short trade.

I am trying to avoid that. 

 i wanted to implement a Shorton and  longon variable after the buy and sell 
code.that reads longon== 1 if in a buy and shorton==1 in a short. then go back 
and not allow a buy unless the shorton ==0.  There is a problem. The shorton , 
longon is used to tell the buy not to put a 1 in the buy array. BUt by 
definition they get set after after the buy and short array are initiliazed in 
the code. so the buy code will always look at the initialized value at 0, 
before it reads the flip. I can't put the flip before the buy code becausec the 
buy has not been initialized. it is like a catch 22. So i thought to use 
staticvars instead but am having trouble. 
 
For example:
 
shorton=0;
longon=0;
 
Buy= BarsSince(Signalbar)< waitPeriod AND (H>highsignal)AND Shorton==0 ;
BuyPrice = Max(O,Highsignal+.05);
Short = BarsSince(signalBars) < waitPeriod AND  (Signallow>L) AND Longon==0;
ShortPrice = Min(Open,Signallow-.05);
Shorton = Flip( Short, Cover );
Longon = Flip( Buy, Sell );


--- In [email protected], "Mike" <sfclimb...@...> wrote:
>
> Zeek,
> 
> My first question would be: Why are you using static variables? AmiBroker 
> will not allow you to enter a Buy if you are already Short, unless you 
> override that behavior. So, I don't see a need for any of what you are trying 
> to do.
> 
> Have you changed the default backtester mode? Or, perhaps you have selected 
> the checkbox "Reverse entry signal forces exit" in the AA Settings. Leave the 
> backtester mode at its default and unselect the "Reverse ..." checkbox from 
> the settings window. Then, just write your vanilla Buy/Sell and Short/Cover 
> code without any concern for what the other is doing. AmiBroker will sort it 
> out based on which signals occur first.
> 
> As an example, run a backtest on the following; Once with the "Reverse ..." 
> checkbox selected and again with it unselected:
> 
> WeekDay = DayOfWeek();
> Short = WeekDay == 1;
> Cover = 0;
> Buy = WeekDay == 3;
> Sell = 0;
> 
> Notice that in one case you get both buys and shorts. In the other you get 
> only a single signal (whichever occurred first).
> 
> As for what is being done "wrong". It's not so much wrong as pointless. 
> Making a call to StaticVarGet without storing the resulting value has no 
> purpose (that I'm aware of), yet your code is doing that twice.
> 
> Also, given that the value being stored is just the value of readily 
> available arrays, I don't see why you need to store anything at all. Why not 
> just use Flip() as in my previous post, or BarsSince(), or Ref()?
> 
> Finally, if you are using the same AFL over multiple symbols, a short 
> position in one symbol will affect the logic of the remaining symbols since 
> you are not discriminating between statics among the different symbols (i.e. 
> you are using a single static variable rather than one per symbol).
> 
> Based on what I've read so far in your previous posts, I'm guessing that 
> unselecting the "Reverse ..." checkbox will solve all your problems.
> 
> Mike
> 
> --- In [email protected], "gregg55554" <zeeking57@> wrote:
> >
> > thanks Mike for your reply, 
> > 
> > a) can you tell me what is wrong with the code, so I don't make the same 
> > mistake again in the future. I tried to replicate code I had seen for 
> > staticvars. 
> > 
> > b) In terms of what I am trying to do. I am trying to write a staticvar 
> > that detects when there is a short trade. and then set it in my buy 
> > condition not to have a buy if "onshort" == 1.  so when staticvar "onshort" 
> > equals 1 then no buys will occur. 
> > I would use the exrem function but as I understand it, it is not very good 
> > in the backtester?? So Marcin suggested I use a staticvar. 
> > 
> > Can you help please
> > zeek
> > 
> > 
> > --- In [email protected], zeek ing <zeeking57@> wrote:
> > >
> > > I think I am having a little problem with my static var code. I expected 
> > > to
> > > see in an exploration with the variable "onshort" a value of 1 when a 
> > > short
> > > trade is on. Instead all I see is zeros in the exploration. I am not sure
> > > why. there are two parts to the code. If anyone can tell me what is  wrong
> > > with this code it would be appreciated.  thanks
> > > 
> > > ///part a--
> > > StaticVarGet("onshort");
> > > 
> > > 
> > > 
> > > if( IsNull(  StaticVarGet("onshort"))) StaticVarSet("onshort",0);
> > > 
> > > Onshort= StaticVarGet("onshort");
> > > 
> > > 
> > > 
> > > //part b---
> > > 
> > > if (LastValue(Short))
> > > 
> > > 
> > > 
> > > {StaticVarSet("onshort",1);}
> > > 
> > > if (LastValue(Cover))
> > > 
> > > 
> > > 
> > > {StaticVarSet("onshort",0);}
> > > 
> > > 
> > > 
> > > StaticVarGet("onshort");
> > >
> >
>


Reply via email to