@telfordstarb It is only how to sort what you want from rsi, needs more to place trades. The numeric value is what's in the RSI indicator window.
Posts made by jstap
-
RE: Wanting to target the high/low of the RSI spike for a entry// ANY HELP WOULD BE GREATposted in Questions & Answers
-
RE: Wanting to target the high/low of the RSI spike for a entry// ANY HELP WOULD BE GREATposted in Questions & Answers
@telfordstarb This should work for buys, ask if you have any problems:
-
RE: Wanting to target the high/low of the RSI spike for a entry// ANY HELP WOULD BE GREATposted in Questions & Answers
@telfordstarb When the RSI X> 70 record candle ID 0, every bar add 1, when RSI X, 70 record candle ID 0 into another variable, in pending buy/sell block use market properties with these 2 variables in the start/end candles.
-
RE: normalize doubleposted in Questions & Answers
@aman NormalizeDouble(VALUE,NUMBER PAST DECIMEL); will do what is needed but not always give the correct result, I have also found that adding to the adjust box won't always work. I create another string variable and use this code DoubleToStr(DOUBLE,NUMBER PAST DECIMEL); if needed change back to StrToDouble(STRING,NUMBER PAST DECEMEL): you may not need to though, use a modify variables block with the code in text input, this gives a more reliable result to normalize double.
-
RE: I want to make an EA for Hull moving average.period 21,method 3. Help please.posted in Questions & Answers
@santabells No trade block>condition with what creates the trade>buy/sell block. Make 2 separate trees, one for each type.
-
RE: RSI Cross 30 ?posted in Questions & Answers
@venus2005th This is because you are using candle ID 0, on 0 it can cross before it returns then the candle closes, if you use candle ID 1 it will wait for the candle to close but you will be a candle behind in time.
-
RE: RSI Cross 30 ?posted in Questions & Answers
@venus2005th A condition block with rsi in left operand X> value 30 in right operand.
-
RE: I want to make an EA for Hull moving average.period 21,method 3. Help please.posted in Questions & Answers
@santabells No mate I've done the first so you can see how to use, make a start and ask questions to problems you are having.
-
RE: I want to make an EA for Hull moving average.period 21,method 3. Help please.posted in Questions & Answers
@santabells This indicator has the values for the lines in the buffers, use which ones you need.
-
RE: Bulk changes in EAsposted in Questions & Answers
@polper Try using the terminal variables block, then read on each EA with a modify variables block.
-
RE: Set stop loss on equity %posted in Questions & Answers
@cri760 Yes the flag will stop trade until it's reset.
-
RE: I want to make an EA for Boom & Crash. Help please.posted in Questions & Answers
@nonhlanhla-dlamini Yes but probably not on a spike.
-
RE: Set stop loss on equity %posted in Questions & Answers
@cri760 When target is met the flag is set to false, once a day it's set back to true, this is checked before placing an order.
-
RE: I want to make an EA for Boom & Crash. Help please.posted in Questions & Answers
@nonhlanhla-dlamini They work but no stop loss will work when the asset spikes.
-
RE: How can the trades in the EA below have common stoploss as the parent trades after closing partiallyposted in Questions & Answers
@od Have you tried to see if this is the level used? As far as I am aware this is how it works.
-
RE: Set stop loss on equity %posted in Questions & Answers
@cri760 I have put an example in the link:
-
RE: How can the trades in the EA below have common stoploss as the parent trades after closing partiallyposted in Questions & Answers
@od From what I know the close partial uses the parent trade SL.