PureBytes Links
Trading Reference Links
|
Hi, Folks
I have been trying to change the Exploration from the Param input as
follows:
SrchUpDn = Param("Search Up-Down",True,False);
(or SrchUpDn = Param("Search Up-Down",1,0);)
if(SrchUpDn >= 1 )
{Filter = Segment1U OR Segment2U OR Segment3U OR Segment4U;
AddColumn(C,"Price");
AddColumn(Entry,"Entry",1.2);
AddColumn(Segment1U,"Seg1U",1.2);
AddColumn(Segment2U,"Seg2U",1.2);
AddColumn(Segment3U,"Seg3U",1.2);
AddColumn(Segment4U,"Seg4U",1.2);
AddColumn(Cond1UP,"Cond1UP",1.2);
AddColumn(Cond2UP,"Cond2UP",1.2);}
else
{Filter = Segment1D OR Segment2D OR Segment3D OR Segment4D;
AddColumn(C,"Price");
AddColumn(Entry,"Entry",1.2);
AddColumn(Segment1D,"Seg1D",1.2);
AddColumn(Segment2D,"Seg2D",1.2);
AddColumn(Segment3D,"Seg3D",1.2);
AddColumn(Segment4D,"Seg4D",1.2);
AddColumn(Cond1DN,"Cond1DN",1.2);
AddColumn(Cond2DN,"Cond2DN",1.2);}
It does not change from the first block (Up Segments) even though the
Param input does change from 1 to 0. I have tried
inputting "True/False" - 1/0 and > and cannot get it to change to the
second block! Anyone know how to do this? Any help would be welcome...
Stan
------------------------------------
**** 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/
|