@chris/shock/deco

FTMO Trader Scouting
outthislife said:
yeah, guess so :thumbsup:

how are you doing lately? never in chat anymore ???

Been pretty under the weather. My health comes and goes, and it went for a bit. Finally doing better, so I should be back to full time trading over the next two weeks. (Granted, I've said that before, but this time it should be true.) I'm not sure how much I'll be in chat, but I'll probably be around some.
 
sqa said:
Been pretty under the weather. My health comes and goes, and it went for a bit. Finally doing better, so I should be back to full time trading over the next two weeks. (Granted, I've said that before, but this time it should be true.) I'm not sure how much I'll be in chat, but I'll probably be around some.

Glad you're doing better :) I hope trading goes well.

Short at 1169, 1125 is a +OB so lets see. like the ADX paint at R? 8)
 

Attachments

  • Screenshot on 9.7.2015 at 2.06.26 AM.png
    Screenshot on 9.7.2015 at 2.06.26 AM.png
    88.6 KB · Views: 53
nice, the paint is definitely a cool feature, I might be throwing stoch and ADX back on my charts soon, I have some "theories" I want to work through with them. You should checkout 8-pip charts as well if you haven't yet, they present some good trades on the "wider" price action.. ;D
 
ez lil range

Chrisrocs said:
nice, the paint is definitely a cool feature, I might be throwing stoch and ADX back on my charts soon, I have some "theories" I want to work through with them. You should checkout 8-pip charts as well if you haven't yet, they present some good trades on the "wider" price action.. ;D

post your findings :))
 

Attachments

  • Screenshot on 9.7.2015 at 9.26.49 AM.png
    Screenshot on 9.7.2015 at 9.26.49 AM.png
    59.6 KB · Views: 41
Will do :O

Sim'ing atm. Any reason the T3 settings on ToS are different from the MT4 one? They work better for you?
 
Chrisrocs said:
Will do :O

Sim'ing atm. Any reason the T3 settings on ToS are different from the MT4 one? They work better for you?

eh that was the original source code (13,3,3). settings as per 'shop' were 21, 4, 3 i believe. i see very little difference :eek:
 
STEP RIGHT UP FOLKS, TRY YOUR LUCK AT CATCHING THE FALLING DAGGER. BUY WHEN PRICES ARE GOING DOWN, SELL WHEN THEY'RE GOING UP, HUEHUEHUEUHEU
 
DO NOT FEAR LADIES AND GENTLEMEN, FOR IF YOU SHOULD FIND YOURSELF IN A HOLE, YOU NEED ONLY DIG IT DEEPER, RUMPLEDONE BE PRAISED! STOP LOSS? WHAT'S THAT? MORE LIKE STOP GAIN :lawl: :party: :lawl: :party:
 
So yeah, working on figuring out how to be more consistent in ranging/choppy markets. HMmmmmmmmmm, ideas? I thought before that it might be useful to incorporate Supp/dem for that, trading from zone to zone more or less...
 
zlag ToS

Code:
input price = close;
input fastLength = 12;
input slowLength = 24;
input MACDLength = 9;
input BarsBack = 30;
input PlotLines = {default "NO", "YES"};
input PlotCrossovers = {default "NO", "YES"};

def EMAf = ExpAverage(price, fastLength);
def EMAs = ExpAverage(price, slowLength);
def EMAEMAf = ExpAverage(EMAf, fastLength);
def EMAEMAs = ExpAverage(EMAs, slowLength);
def ZLEMAf = EMAf + EMAf - EMAEMAf;
def ZLEMAs = EMAs + EMAs - EMAEMAs;
def TR = TRIX(9, 14, close, 3);

plot MACDValue = if PlotLines then (EMAf - EMAs) else Double.NaN;
plot SignalAvg = if PlotLines then ExpAverage(MACDValue, MACDLength) else Double.NaN;

plot Diff = ZLEMAf - ZLEMAs;
def ChartPeriod = GetAggregationPeriod() / 1000 / 60;

plot m = 0;
m.AssignValueColor(Color.DARK_GRAY);
m.setStyle(curve.firm);

Diff.SetDefaultColor(GetColor(5));
Diff.SetPaintingStrategy(PaintingStrategy.HISTOGRAM);
Diff.SetLineWeight(3);

Diff.DefineColor("Positive and Up", Color.GREEN);
Diff.DefineColor("Positive and Down", Color.DARK_GREEN);
Diff.DefineColor("Negative and Down", Color.GREEN);
Diff.DefineColor("Negative and Up", Color.DARK_GREEN);

Diff.AssignValueColor(if Diff >= 0 then if Diff > Diff[1] then Diff.Color("Positive and Up") else Diff.Color("Positive and Down") else if Diff < Diff[1] then Diff.Color("Negative and Down") else Diff.Color("Negative and Up"));

# Visual signals
AddLabel(yes, "MACD="+Diff);

def isSignal = Diff crosses 0;

AddVerticalLine(PlotCrossovers and isSignal, "", color.dark_green, curve.short_dash);
#AssignPriceColor(if isSignal then color.red else color.current);
Alert(isSignal, "MACD crossed 0");

# Genius!
def isLastBar = isNan(Diff[-1]) and !isNAN(Diff);

plot priceLine = highestAll(if isLastBar then Diff else double.nan);
priceLine.setDefaultColor(color.red);
 
FTMO Trader Scouting
Back
Top