Home › Forums › Development › Trading Systems – Development › MTH – TZ and her friends for manual trading all TF › Reply To: MTH – TZ and her friends for manual trading all TF
Hello Zelo,
Good to hear from you
Believe me – this it not the case. Would have wished that I was that silly.
Attached you can see that I have allowed it. And I have not opened the Indi list and Changed it cuz I did it when attaching the indicator
And I guess I followed the instructions if you are refering to this:
PairName= “current pair”;
you can leave it as default if you just use ‘her’ to current chart, or you can type in your pair name, if you want to ‘reference’ other pairs into your current chart
OHLC_Prob_TF= 0;
leave it 0 for current TF, or type in your ‘reference’ TF (higher TF).
Maxbar= 480;
This is limiter bars for Skull and Star to show up, count from current bars. type 0 if you want Skull and Star to show up in your whole current chart.
//———————————— ——————————-+
text1= “=== Probability Sub Sequencer setting===”;
IndicatorID= “SSNS_F13”;
this is indicator ID in case you use 2 instance of S&S Indicator in same chart, you should create different ID for each of them.
SkullShift_Pct= 5;
this is ‘shifting’ up/down position of skull in percent (counting from the range of High to Low)
StarShift_Pct= 20;
this is ‘shifting’ up/down position of star in percent (counting from the range of High to Low)
BarStep= 13;
leave this as default (this is for sub sequencer step)
SectionMode= false;
default ‘false’ for arrow (Skull and Star), if you change to ‘true’ the Skull and Star will change to ‘channel’ like lines.
ShowNextStar= true;
to activated ‘star’ signal, default active
ShowContinuesNextStar= false;
If you set to ‘true’ the ‘1st’ star signal, will follow with ‘2nd’ or ‘3rd’ star if conditions met.
NextStarSize= 0;
UpNextStarColor= clrChartreuse;
DnNextStarColor= clrLightPink;
NextStarUpCode= 171;
NextStarDnCode= 171;
size, color, and code for star signal
ShowSkull= true;
to activate ‘skull signal’ default active
RarestSkull= false;
if you set to ‘true’ it will show only the ‘rarest’ Skull conditions. that usually 100% probability for current candle to follow the skull signal.
SkullSize= 0;
UpSkullColor= clrSpringGreen;
DnSkullColor= clrHotPink;
UpSkullCode= 78;
DnSkullCode= 78;
size, color, and code for skull signal
//———————————— ——————————-+
Show_Line= true;
to show horizontal line from skull signal
Show_Line_in_Background= true;
to set horizontal line behind candles
Show_Validation= false;
let it default
UpSkull_LineColor= clrDeepPink;
UpSkull_LineWidth= 0;
UpSkull_LineStyle= 0;
DnSkull_LineColor= clrLime;
DnSkull_LineWidth= 0;
DnSkull_LineStyle= 0;
horizontal line, size, color and style.
Show_Stat = false;
X_axis = 5;
Y_axis = 105;
Y_step = 15;
TextColor = clrYellow;
ResultColor = clrLime;
upBiasColor = clrLime;
dnBiasColor = clrHotPink;
dfBiasColor = clrAquamarine;
stat setting, position, and color
DoAutoRefresh = false;
let the default ‘false’, if you set to ‘true’ your history will refresh in frequency according to SecondTick setting. It’s not so necessary to use it
SecondTick = 5; // Period in seconds
this is important option, the default is ‘refresh’ calculation for ‘star’ every 5 second.
if DoAutoRefresh = false, this will only ‘redraw’ your chart without refresh your history /synchronized with your broker server.
//———————————— ——————————-+
alertsOn = true;
to activate alert system
SkullAlertOnCurrent = true;
alert voice and message for ‘skull’ will show up for current candle.
StarAlertsOnCurrent = false;
let the default as ‘false’ since for ‘star’ signal will show up in previous candle. but alert voice and message will show up in current candle.
alertsMessage = false;
set to ‘true’ if you need pop up message box
alertsSound = true;
to activate your ‘voice’ alert. default activated.
Note1 = “Speech Setting”;
AlertText = ” “;
you can fill your own text here like ‘attention’, ‘hello’ , ‘Oh My God’ whatever lol…,
BrokerNameText = ” “;
you can fill your broker name here if you use more than 1 MT4 from different broker at same time, so you can recognize from which MT4 the voice came from.
Currency1Text = ” “;
this is for your first currency name; for example AUDUSD you can type in ‘Aussie Dollar’ here.
Currency2Text = ” “;
and you can type in ‘US Dollar’ here.
ChartStyleText = ” “;
if you use alternative chart like renko or constant bar you can type in your chart type here like ‘Constant Bar’,
alertsEmail = false;
send the signal message to your e-mail address.
From Note1 and down is the only inputs I’ve leaved unwritten.