Search found 5 matches

by davidlaw_mc
Aug 21 2024
Forum: MultiCharts
Topic: slippage for btc
Replies: 1
Views: 1342

slippage for btc

hi all, how will you set the slippage cost for BTC? i have tried to figure out but still not really getting it. at moment i use Binance with the set up as attached. i also notice that in Binance the default Volume Multiplier is set to "100000", not sure if it will affect the setting of sli...
by davidlaw_mc
Aug 15 2024
Forum: MultiCharts
Topic: Bybit data range
Replies: 1
Views: 1489

Bybit data range

hi all, for every instrument (like BTC / ETH / SOL / ATOM) i chose in Bybit, n after i set the data range from lets say 2018 jan till latest, the earliest data can be generated is from 2021. wonder if i need to have other settings? or if any other data source (especially for crypto) can obtain older...
by davidlaw_mc
Jul 18 2024
Forum: MultiCharts
Topic: how to set protfit target and stop lose based on percentage
Replies: 4
Views: 3499

Re: how to set protfit target and stop lose based on percentage

i think i hv found the way to do it - inputs: Price( Close ), FastLength( 9 ), SlowLength( 18 ), SL(0.1), SPT(0.2); variables: var0( 0 ), var1( 0 ), START_PRICE(0); var0 = AverageFC( Price, FastLength ) ; var1 = AverageFC( Price, SlowLength ) ; condition11 = CurrentBar > 1 and var0 crosses over var1...
by davidlaw_mc
Jul 10 2024
Forum: MultiCharts
Topic: how to set protfit target and stop lose based on percentage
Replies: 4
Views: 3499

how to set protfit target and stop lose based on percentage

thanks for letting me know the format in posting! for easy reading here is my question again - im trying to write a script with follow logic when MA1 cross over MA2 - put a buy order when MA1 cross under MA2 - put a sell order (at moment no sellshort) once there is an open position (ie buy order exe...
by davidlaw_mc
Jul 09 2024
Forum: MultiCharts
Topic: how to set protfit target and stop lose based on percentage
Replies: 1
Views: 1249

how to set protfit target and stop lose based on percentage

hi all, warm greeting from a newbie here! im trying to write a script with follow logic (simple one as a lesson 101 lol) when MA1 cross over MA2 - put a buy order when MA1 cross under MA2 - put a sell order (at moment no sellshort) once there is an open position (ie buy order executed), i want to se...