PureBytes Links
Trading Reference Links
|
Hello ,
I meet a bug when I spy the "Croisement" variable with the
spreadsheet "results" (explorer) .
The variable "croisement" should receive the value "100" sometimes
and not always the value "222" .
It's probably a beginner's bug ...
aire1 = WMA(C,150);
aire2 = MA(C,50);
aire3 = aire1 / aire2 ;
recup =0;
Croisement =0 ;
bi = BarIndex();
for(i=0; i < BarCount -1 ;i++)
{
recup[i] = bi[i];
if (aire3[i] >= 0.95 AND aire3[i] <= 1.00)
{
//Croisement == recup[i];
Croisement == 100; //I don't reach this line ?!
// I am sure that sometimes aire3 has got a
// value beetwee 0.95 and 1
}
else
{
Croisement = 222;
}
Filter =1;
//AddColumn(bi,"barindex");
AddColumn(recup,"pour voir");
AddColumn(aire1,"aire1",format = 1.2);
AddColumn(aire2,"aire2",format = 1.2);
AddColumn(aire3,"aire3",format = 1.2);
AddColumn(Croisement,"croisement");
//AddColumn(a,"valeur du croisement");
------------------------------------
**** IMPORTANT ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
*********************
TO GET TECHNICAL 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/
|