PureBytes Links
Trading Reference Links
|
Ah! I think I see the problem!
Perhaps you should have:
ActionNumber = IIf(Action == "Buy", 1, 2);
AlertIf(True,"" ,actionString,ActionNumber,1);
instead of:
AlertIf(True,Action ,actionString,0,1);
Cheers,
Ian
since Action represents the content of the message generated
(e.g "Buy {symbol} at {price}...), not the form the message takes
(e.g. message window, command, e-mail, sound).
--- In amibroker@xxxxxxxxxxxxxxx, "murthysuresh" <money@xxx> wrote:
>
> Action is one of 2 strings "Buy" or "Sell"
>
> --- In amibroker@xxxxxxxxxxxxxxx, "ian_rosbif" <ian_rosbif@> wrote:
> >
> > Hi,
> > What's in variable "Action"? Is it always blank?
> > The help file says that if the command is empty AlertIf will
> display
> > the text in the alert window.
> > The thing is I'm not sure if blanks is the same as emtpy, as in
> > {Empty}. I'd try changing Action in the AlertIf command to ""
(this
> > is the example given in the help text), or Null & see what
happens.
> > Cheers,
> > Ian
> >
> > --- In amibroker@xxxxxxxxxxxxxxx, "murthysuresh" <money@> wrote:
> > >
> > > function doTrade(symb,Action){
> > >
> > >
> > > actionString=buildAction(symb,Action, LastValue
> > > (Close) ,DateTimeToStr( GetPlaybackDateTime() ));
> > > fh = fopen( "trades.csv", "a");
> > > if( fh )
> > > {
> > > fputs( actionString +"\n", fh );
> > >
> > > fclose( fh );
> > > }
> > >
> > >
> > >
> > >
> > > AlertIf(True,Action ,actionString,0,1);
> > >
> > >
> > > }
> > >
> > >
> > > i wrote this function to act as a simulated broker. but i find
> that
> > > the alertif is not consistently logging the trades. i can see
the
> > > trade written to the csv file but not to the alert window. is
> there
> > > something i am missing.
> > >
> >
>
------------------------------------
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|