Date type: {a,b,c,d}
Name: defined by you
Default value: none. A variable has default value, not data type
Posts made by sktsec
-
RE: enum . add indicator . my indicatorposted in Questions & Answers
-
RE: Find the highest (or lowest) close of x barsposted in Questions & Answers
This is the case for highest. For the lowest, remember to set the initial value of the provsionalResult to a large number, say, 99999999. (of course, you would modify the condition block as well)
Sure you can add a block to initiate this variable to the value of starting Candle close. That is up to your preference.
-
RE: Find the highest (or lowest) close of x barsposted in Questions & Answers
So you only need 2 blocks to get your result.
You can customize the starting Candle ID. But remember to set the looping candle ID be startCandleID -1 before entering the loop
-
RE: Find the highest (or lowest) close of x barsposted in Questions & Answers
result: The highest closest in recent nBars (including current Candle: ID0)
nBars : Input number of bars
loopID: Before the loop -1. +1 for every loop. i.e. loop start from Candle 0
provisionalResult: Highest close in looping process -
RE: Find the highest (or lowest) close of x barsposted in Questions & Answers
@MT4Nutzer
Initiate then use the loop block and a condition block.Suppose x is the result
Initiate x (such as close of the start candle)
Loop n times for the candles
Use condition block to compare x and close
save any new value to x[Amended: loop n times not x times]
-
RE: Lot-size Chart display EAposted in Questions & Answers
@FX-Gnosis
Say,
x = your_money/(Money per tick/Tick size)
sl_fraction is the stop loss fraction.The full formula is
x / sl_fractionUsing the result to check that is correct before you really use it
-
RE: Lot-size Chart display EAposted in Questions & Answers
@l-andorrà
Market properties --> Money per tick
Market properties --> Tick sizeThe formula could be
your_money/(Money per tick/Tick size)Money per tick actually means money per tick per lot
-
RE: Block condition cannot compare the calculated variables.posted in Bug Reports
@MigSornrakrit
You have selected crossover (x> or x<). That only works for array.Do you mean greater than (>) or less than (<) ?
-
RE: Trading on the zero candleposted in Questions & Answers
On tick.
On Trade means to work whenever there is any position change
-
RE: Change bot values via web formposted in Questions & Answers
@mohsen-2
Fxdreema has a block to make http request.Setup a server yourself. Return a key to unlock the EA.
That is the concept that may work
-
RE: std deviation multiplierposted in Questions & Answers
What do you mean "there is no multiplier button" ?
-
RE: Spread filter as dropdown menu?posted in Questions & Answers
@MT4Nutzer
Try and error. Use 0, 1, 2,... as input -
RE: how to have the same ea with different magic numbers?posted in Questions & Answers
Open another chart with your EA, and enter another magic number in the input
-
RE: MULTIPLE TIMEFRAME ROBOTposted in Questions & Answers
@Humble_Fx
You can enter timeframe for each indicator -
RE: Change bot values via web formposted in Questions & Answers
It seems you are talking about remote licensing
-
RE: Change bot values via web formposted in Questions & Answers
Where do you put your password ? In the input field? Is it meaningful ?
-
RE: Change bot values via web formposted in Questions & Answers
You mean use change the source code through the web interface ?
