Miscellaneous
128 scripts available
Different ways for handling arrays/tables in SE
Custom command that creates all Heikin-Ashi prices. And since loops can be slow, you can optimize and set the amount of data you want it ...
[pshaiCmd] ArrayRemove
stableSimple custom command to remove a cell from an array. Usage testample: local testArr1 = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', '...
Firetron's ObjectArray
stableCreates and returns an ObjectArray Class instance. It has less operations than a normal array, but it can store objects instead of just s...
Formats a number to be rounded and have the profit currency symbol.
A simple but yet handy custom command to input and convert trade amounts based on settings. Update: Added optional market input
I posted my risk management method in https://discord.com/channels/269316665483722764/491747780029579276/793910926466220032 It is very i...
Simple but effective custom command for modulo operation. Made for the great users of VE, with love. <3 ~pshai More on modulo opera...
I see lots of people asking if they can do for each loops in visual editor. This should sort of help, but not great. You need to know th...
[CMD] BacktestSettings
stableThis expands from the balance monitor command as most of these things are all used together so I have combined most of the usual settings...
[pshaiCmd] SuperInput
stableCreates an input field and monitors changes in value. A handy way to monitor values and/or optimize calculations. Requires: https://www...
Here is my take on bot blueprint!! It has quite a lot of inner works and I intend on adding more later on. Unfortunately I cannot upload...
This command is used to calculate a standard deviation for a given data set. Note: Its a bit slow but works well enough
Custom command to calculate Bollinger Band Width.
Firetron's InputOrderOptions
stableCreates a group of inputs for order options. Custom Command Dependencies: None Test Script: if not Load('done', false) then -- Test ...
[CMD] Sync Positions
stableYes it works, Yes Its running on live working bots. Will sync positions with whats open at the exchange if the bot looses its amount or...
[cmd] getOID
stable---Usage local oid = CC_getOID(true, 1) ----blah get signal then place order if oid == '' and signal == SignalLong then oid = CC_getOI...
Generic template for long short bot using remote signals. Long signals exits a running short and vice versa. Long TP/SL and Short TP/SL...
[cmd] GetPID (getPositionId)
stable---Usage for i=1, 100 do local LongPosId = CC_getPID(true, k) local ShortPosId = CC_getPID(false, k) do blah with LongPosId do blah w...
Adds a custom report on your maximum margin used.
[CMD] Sleep
stableSimple command to sleep/pause scripts and includes a switch to disable in backtest. To sleep for 10 seconds for example CC_Sleep(10) ...
Firetron's FormatBoolean
stableFormats a boolean to a string so it can be logged.
Firetron's InputDebugOptions
stableCreates a group of inputs for debug options: fee, logging, plotting, reporting, verbose, verbosityInterval. Custom Command Dependencies:...
[pshaiCmd] ArrayRemove2
stableSimple command to remove value(s) from the array. Usage testample: local testArr1 = {'a', 'a', 'b', 'c', 'a', 'b'} local testArr2 = {1, ...