Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //========== concept: how series function work ============//
- // Host indicator:
- inputs: ENABLED (false);
- vars: price(0);
- text= "a";
- if( ENABLED ) then begin
- text= "b";
- Value1 = func1 (text);
- end;
- text= "c";
- // ===== FUNC1 (series type) ==== //
- inputs: length(numericSimple);
- Print(length);
- // print output will be //
- when ENABLED is true, indicator prints:
- "b"
- when ENABLED is false, indicator will still print, but another value:
- "c"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement