Hi,

I have one script where I generate rules
Code
scritp gen.c

function run()
{
  	assetList("Assets4");
        string cSymbol=strx(Asset,"/","");
	Script = strf("AlfaEE_%s",cSymbol);

     ...
        vL = adviseLong(PATTERN+FAST,0,
}


and in second - where I use rules from first (gen.c). But I cannot get, if second script use this rules or not
Code
script second.c
function run()
{
  	assetList("Assets4");
        string cSymbol=strx(Asset,"/","");
	Script = strf("AlfaEE_%s",cSymbol);


I change name the script to:
Script = "AlfaEE_error";

but I dont see any error and script second.c runnign without problem. But no open any order.




Last edited by Grat; 06/25/20 17:16.