[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Volatility Filters- ??passing variables as inputs to: Include System



PureBytes Links

Trading Reference Links

You can use the hashnums dll or the global variables Dll  Like so

DefineDLLFunc:"c\hashnums\hashnums.dll",INT,"putAt",LPSTR,LPSTR,FLOAT;
DefineDLLFunc:"c\hashnums\hashnums.dll",FLOAT,"getAt",LPSTR,LPSTR;

PutAt("Charlie","VarA",VarA);
PutAt("Charlie","VarB",VarB);


IncludeSystem:"Charlie's Break";


Then inside Charlie's Break System
VarA=getAt("Charlie",VarA);
VarB=getAt("Charlie",VarB);