Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

MC

Think or Swim Code/indicators

Recommended Posts

Does anyone on here use Think or swim and have any of the great indicators coded like we have for Tradestation.

 

I would be interested in VWAP and 3bar trend mainly.

Also maybe a value chart, ttm trend, ttm scalper alert.

I don't know that it would be an option but a volume by price/price histogram.

 

Thanks guys :)

Share this post


Link to post
Share on other sites

I tried it out last year, I actually didn't even realize they have a scripting engine.

That's very interesting. Does it do backtesting on options?

I think it could be tough to find the stuff you want without coding it yourself though.

Share this post


Link to post
Share on other sites
I tried it out last year, I actually didn't even realize they have a scripting engine.

That's very interesting. Does it do backtesting on options?

I think it could be tough to find the stuff you want without coding it yourself though.

 

They do have custom coding...I'm no good at coding so I would have to beg or pay someone to do the dirty work if it's not easily ported over. ;)

 

I believe they are talking of backtesting soon being added, though I don't use them yet so I can't confirm that.

Share this post


Link to post
Share on other sites

...here is TTM squeeze...

....

declare lower;

input Length = 20;

input price = close;

######################

def e1 = (Highest(High, length) + Lowest(low, length)) / 2 + Average(close, length);

def osc = Inertia(price - e1 / 2, length);

plot oscp = osc;

 

def diff = reference bollingerbands(length = 20)."upperband" - reference KeltnerChannels."Upper_Band";

plot mid = 0;

mid.assignValueColor(if diff >= 0 then Color.UPTICK else Color.DOWNTICK);

 

#oscp.assignValueColor(if osc[1] < osc[0] then Color.CYAN else Color.magenta);

oscp.assignValueColor(if osc[1] < osc[0] then

if osc[0] >= 0 then

#UpPos

createColor(0, 255, 255) else

#UpNeg

createColor(204, 0, 204)

else if osc[0] >= 0 then

#DnPos

createColor(0, 155, 155) else

#DnNeg

createColor(255, 155, 255));

 

oscp.setPaintingStrategy(PaintingStrategy.HISTOGRAM);

mid.setPaintingStrategy(PaintingStrategy.POINTS);

...........

and here is VWAP

.....

plot Data = TotalSum(Volume * Close) / TotalSum(Volume);

................

and here is TICK

.............

declare lower;

plot data = high("$tick");

Plot Data2 = low("$tick");

plot ZeroLine = 0;

plot up = 800;

plot down = -1000;

Plot Noise = 600;

Plot Noise2 = -600;

zeroline.setDefaultColor(color.blue);

Noise.setDefaultColor(color.yellow);

noise2.setDefaultColor(color.yellow);

up.setDefaultColor(color.uptick);

down.setDefaultColor(color.uptick);

data.assignValueColor(if data >= 800 then Color.upTICK else Color.blue);

data.setLineWeight(2);

Data.setPaintingStrategy(PaintingStrategy.HISTOGRAM);

data2.assignValueColor(if data2 <= -1000 then Color.downtick else Color.blue);

data2.setLineWeight(2);

Data2.setPaintingStrategy(PaintingStrategy.HISTOGRAM);

ZeroLine.setDefaultColor(GetColor(0));

............

Does anyone on here use Think or swim and have any of the great indicators coded like we have for Tradestation.

I would be interested in VWAP and 3bar trend mainly.

Also maybe a value chart, ttm trend, ttm scalper alert.

I don't know that it would be an option but a volume by price/price histogram.

Thanks guys :)

Share this post


Link to post
Share on other sites

Thanks...very cool. The squeeze doesn't load on the screen for some reason and it's red in the list of active indicators. Wonder if I'm doing something wrong.

 

Any ideas?

Share this post


Link to post
Share on other sites

try again ?

 

 

declare lower;

input Length = 20;

input price = close;

######################

def e1 = (Highest(High, length) + Lowest(low, length)) / 2 + Average(close, length);

def osc = Inertia(price - e1 / 2, length);

plot oscp = osc;

 

def diff = reference bollingerbands(length = 20)."upperband" - reference KeltnerChannels."Upper_Band";

plot mid = 0;

mid.assignValueColor(if diff >= 0 then Color.UPTICK else Color.DOWNTICK);

 

#oscp.assignValueColor(if osc[1] < osc[0] then Color.CYAN else Color.magenta);

oscp.assignValueColor(if osc[1] < osc[0] then

if osc[0] >= 0 then

#UpPos

createColor(0, 255, 255) else

#UpNeg

createColor(204, 0, 204)

else if osc[0] >= 0 then

#DnPos

createColor(0, 155, 155) else

#DnNeg

createColor(255, 155, 255));

 

oscp.setPaintingStrategy(PaintingStrategy.HISTOGRAM);

mid.setPaintingStrategy(PaintingStrategy.POINTS);

 

 

 

 

Thanks...very cool. The squeeze doesn't load on the screen for some reason and it's red in the list of active indicators. Wonder if I'm doing something wrong.

Any ideas?

Share this post


Link to post
Share on other sites

elovmer...same thing on my end still. Sorry to be a pain.

Has anybody else tried the code for squeeze and had it work? I've never had a custom indicator come up red in my list so I'm confused as to whats wrong. :crap:

 

Edit---

Found it...the space in code for "upper_ba nd" slipped by me. I deleted that space and shes good to go.

 

Thanks a bunch. Did you code these? I have one other indicator I miss from Tradestation that I wonder about having coded for TOS.

Edited by MC

Share this post


Link to post
Share on other sites

currently there is no way to do this on tos charts,,,, i was however able to make a POC indicator that i have tweaked for 2min on the ES, enjoy!

 

 

#developing poc by popstocks, for 2min

 

def swi = if getDayOfMonth() != getDayOfMonth()[1] or secondsfromtime(1614)==0 then 1 else 0;

 

rec fir = if swi == 1 then close else fir[1];

rec b1 = if swi == 1 then 0 else if between(close, fir, fir * 1.002) then volume + b1[1] else b1[1];

rec b2 = if swi == 1 then 0 else if between(close, fir * 0.998, fir) then volume + b2[1] else b2[1];

 

rec d1 = if swi == 1 then 0 else if between(close, fir * 1.002, fir * 1.004) then volume + d1[1] else d1[1];

rec d2 = if swi == 1 then 0 else if between(close, fir * 1.004, fir * 1.006) then volume + d2[1] else d2[1];

rec d3 = if swi == 1 then 0 else if between(close, fir * 1.006, fir * 1.008) then volume + d3[1] else d3[1];

rec d4 = if swi == 1 then 0 else if between(close, fir * 1.008, fir * 1.010) then volume + d4[1] else d4[1];

rec d5 = if swi == 1 then 0 else if between(close, fir * 1.010, fir * 1.012) then volume + d5[1] else d5[1];

rec d6 = if swi == 1 then 0 else if between(close, fir * 1.012, fir * 1.014) then volume + d6[1] else d6[1];

rec d7 = if swi == 1 then 0 else if between(close, fir * 1.014, fir * 1.016) then volume + d7[1] else d7[1];

rec d8 = if swi == 1 then 0 else if between(close, fir * 1.016, fir * 1.018) then volume + d8[1] else d8[1];

rec d9 = if swi == 1 then 0 else if between(close, fir * 1.018, fir * 1.020) then volume + d9[1] else d9[1];

rec d10 = if swi == 1 then 0 else if between(close, fir * 1.020, fir * 1.022) then volume + d10[1] else d10[1];

rec d11 = if swi == 1 then 0 else if between(close, fir * 1.022, fir * 1.024) then volume + d11[1] else d11[1];

rec d12 = if swi == 1 then 0 else if between(close, fir * 1.024, fir * 1.026) then volume + d12[1] else d12[1];

rec d13 = if swi == 1 then 0 else if between(close, fir * 1.026, fir * 1.028) then volume + d13[1] else d13[1];

rec d14 = if swi == 1 then 0 else if between(close, fir * 1.028, fir * 1.030) then volume + d14[1] else d14[1];

 

rec z1 = if swi == 1 then 0 else if between(close, fir * 0.996, fir * 0.998) then volume + z1[1] else z1[1];

rec z2 = if swi == 1 then 0 else if between(close, fir * 0.994, fir * 0.996) then volume + z2[1] else z2[1];

rec z3 = if swi == 1 then 0 else if between(close, fir * 0.992, fir * 0.994) then volume + z3[1] else z3[1];

rec z4 = if swi == 1 then 0 else if between(close, fir * 0.990, fir * 0.992) then volume + z4[1] else z4[1];

rec z5 = if swi == 1 then 0 else if between(close, fir * 0.988, fir * 0.990) then volume + z5[1] else z5[1];

rec z6 = if swi == 1 then 0 else if between(close, fir * 0.986, fir * 0.988) then volume + z6[1] else z6[1];

rec z7 = if swi == 1 then 0 else if between(close, fir * 0.984, fir * 0.986) then volume + z7[1] else z7[1];

rec z8 = if swi == 1 then 0 else if between(close, fir * 0.982, fir * 0.984) then volume + z8[1] else z8[1];

rec z9 = if swi == 1 then 0 else if between(close, fir * 0.980, fir * 0.982) then volume + z9[1] else z9[1];

rec z10 = if swi == 1 then 0 else if between(close, fir * 0.978, fir * 0.980) then volume + z10[1] else z10[1];

rec z11 = if swi == 1 then 0 else if between(close, fir * 0.976, fir * 0.978) then volume + z11[1] else z11[1];

rec z12 = if swi == 1 then 0 else if between(close, fir * 0.974, fir * 0.976) then volume + z12[1] else z12[1];

rec z13 = if swi == 1 then 0 else if between(close, fir * 0.972, fir * 0.974) then volume + z13[1] else z13[1];

rec z14 = if swi == 1 then 0 else if between(close, fir * 0.970, fir * 0.972) then volume + z14[1] else z14[1];

 

 

 

 

def o = Max(d1, Max(d2, Max(d3, Max(d4, Max(d5, Max(d6, Max(d7, 0)))))));

 

 

def n = Max(d8, Max(d9, Max(d10, Max(d11, Max(d12, Max(d13, Max(d14, 0)))))));

def w = Max(z1, Max(z2, Max(z3, Max(z4, Max(z5, Max(z6, Max(z7, 0)))))));

def s = Max(z8, Max(z9, Max(z10, Max(z11, Max(z12, Max(z13, Max(z14, 0)))))));

def g = Max(b1, Max(b2, Max(n, Max(w, Max(s, o)))));

 

rec po = if g > g[1] then ( ( sum(hlc3*volume,20) / sum(volume,20) ) + average(hlc3,15) )/2 else po[1];

rec pop = if swi==1 then po[1] else pop[1];

def poc = if pop == 0 then double.nan else pop;

plot pz = poc * 1.0015;

plot py = poc * 0.9985;

 

def yo = po;

plot yos = if isnan(close[-1]) then double.NaN else if yo != 0 then yo else double.nan;

#yos.SetPaintingStrategy(paintingstrategy.points);

yos.hidebubble();

Share this post


Link to post
Share on other sites

....are you sure there is no way to do it ? volume by price....

...about VWAP.....

...the way i use it on TOS is ... during globex.... i include the previous days action ... and look for a return to VWAP....

.... or look for a return to it ... during regular hours if it did not make it during globex....

 

...how do you use POINT OF CHANGE... on the 2 min chart ?

Share this post


Link to post
Share on other sites

Hello all.

 

Here is the TICK

 

declare lower;

plot data = high("$tick");

Plot Data2 = low("$tick");

plot ZeroLine = 0;

plot up = 800;

plot down = -1000;

Plot Noise = 600;

Plot Noise2 = -600;

zeroline.setDefaultColor( color.blue);

Noise.setDefaultColor(color.yellow);

noise2.setDefaultColor(color.yellow);

up.setDefaultColor(color. uptick);

down.setDefaultColor(color.uptick);

data.assignValueColor(if data >= 800 then Color.upTICK else Color.blue);

data.setLineWeight(2);

Data.setPaintingStrategy( PaintingStrategy.HISTOGRAM);

data2.assignValueColor(if data2 <= -1000 then Color.downtick else Color.blue);

data2.setLineWeight(2);

Data2.setPaintingStrategy (PaintingStrategy.HISTOGRAM);

ZeroLine.setDefaultColor( GetColor(0));

Share this post


Link to post
Share on other sites

Hi, the "getDayofMonth" string is an error. Do you know how to fix this?

 

currently there is no way to do this on tos charts,,,, i was however able to make a POC indicator that i have tweaked for 2min on the ES, enjoy!

 

 

#developing poc by popstocks, for 2min

 

def swi = if getDayOfMonth() != getDayOfMonth()[1] or secondsfromtime(1614)==0 then 1 else 0;

 

rec fir = if swi == 1 then close else fir[1];

rec b1 = if swi == 1 then 0 else if between(close, fir, fir * 1.002) then volume + b1[1] else b1[1];

rec b2 = if swi == 1 then 0 else if between(close, fir * 0.998, fir) then volume + b2[1] else b2[1];

 

rec d1 = if swi == 1 then 0 else if between(close, fir * 1.002, fir * 1.004) then volume + d1[1] else d1[1];

rec d2 = if swi == 1 then 0 else if between(close, fir * 1.004, fir * 1.006) then volume + d2[1] else d2[1];

rec d3 = if swi == 1 then 0 else if between(close, fir * 1.006, fir * 1.008) then volume + d3[1] else d3[1];

rec d4 = if swi == 1 then 0 else if between(close, fir * 1.008, fir * 1.010) then volume + d4[1] else d4[1];

rec d5 = if swi == 1 then 0 else if between(close, fir * 1.010, fir * 1.012) then volume + d5[1] else d5[1];

rec d6 = if swi == 1 then 0 else if between(close, fir * 1.012, fir * 1.014) then volume + d6[1] else d6[1];

rec d7 = if swi == 1 then 0 else if between(close, fir * 1.014, fir * 1.016) then volume + d7[1] else d7[1];

rec d8 = if swi == 1 then 0 else if between(close, fir * 1.016, fir * 1.018) then volume + d8[1] else d8[1];

rec d9 = if swi == 1 then 0 else if between(close, fir * 1.018, fir * 1.020) then volume + d9[1] else d9[1];

rec d10 = if swi == 1 then 0 else if between(close, fir * 1.020, fir * 1.022) then volume + d10[1] else d10[1];

rec d11 = if swi == 1 then 0 else if between(close, fir * 1.022, fir * 1.024) then volume + d11[1] else d11[1];

rec d12 = if swi == 1 then 0 else if between(close, fir * 1.024, fir * 1.026) then volume + d12[1] else d12[1];

rec d13 = if swi == 1 then 0 else if between(close, fir * 1.026, fir * 1.028) then volume + d13[1] else d13[1];

rec d14 = if swi == 1 then 0 else if between(close, fir * 1.028, fir * 1.030) then volume + d14[1] else d14[1];

 

rec z1 = if swi == 1 then 0 else if between(close, fir * 0.996, fir * 0.998) then volume + z1[1] else z1[1];

rec z2 = if swi == 1 then 0 else if between(close, fir * 0.994, fir * 0.996) then volume + z2[1] else z2[1];

rec z3 = if swi == 1 then 0 else if between(close, fir * 0.992, fir * 0.994) then volume + z3[1] else z3[1];

rec z4 = if swi == 1 then 0 else if between(close, fir * 0.990, fir * 0.992) then volume + z4[1] else z4[1];

rec z5 = if swi == 1 then 0 else if between(close, fir * 0.988, fir * 0.990) then volume + z5[1] else z5[1];

rec z6 = if swi == 1 then 0 else if between(close, fir * 0.986, fir * 0.988) then volume + z6[1] else z6[1];

rec z7 = if swi == 1 then 0 else if between(close, fir * 0.984, fir * 0.986) then volume + z7[1] else z7[1];

rec z8 = if swi == 1 then 0 else if between(close, fir * 0.982, fir * 0.984) then volume + z8[1] else z8[1];

rec z9 = if swi == 1 then 0 else if between(close, fir * 0.980, fir * 0.982) then volume + z9[1] else z9[1];

rec z10 = if swi == 1 then 0 else if between(close, fir * 0.978, fir * 0.980) then volume + z10[1] else z10[1];

rec z11 = if swi == 1 then 0 else if between(close, fir * 0.976, fir * 0.978) then volume + z11[1] else z11[1];

rec z12 = if swi == 1 then 0 else if between(close, fir * 0.974, fir * 0.976) then volume + z12[1] else z12[1];

rec z13 = if swi == 1 then 0 else if between(close, fir * 0.972, fir * 0.974) then volume + z13[1] else z13[1];

rec z14 = if swi == 1 then 0 else if between(close, fir * 0.970, fir * 0.972) then volume + z14[1] else z14[1];

 

 

 

 

def o = Max(d1, Max(d2, Max(d3, Max(d4, Max(d5, Max(d6, Max(d7, 0)))))));

 

 

def n = Max(d8, Max(d9, Max(d10, Max(d11, Max(d12, Max(d13, Max(d14, 0)))))));

def w = Max(z1, Max(z2, Max(z3, Max(z4, Max(z5, Max(z6, Max(z7, 0)))))));

def s = Max(z8, Max(z9, Max(z10, Max(z11, Max(z12, Max(z13, Max(z14, 0)))))));

def g = Max(b1, Max(b2, Max(n, Max(w, Max(s, o)))));

 

rec po = if g > g[1] then ( ( sum(hlc3*volume,20) / sum(volume,20) ) + average(hlc3,15) )/2 else po[1];

rec pop = if swi==1 then po[1] else pop[1];

def poc = if pop == 0 then double.nan else pop;

plot pz = poc * 1.0015;

plot py = poc * 0.9985;

 

def yo = po;

plot yos = if isnan(close[-1]) then double.NaN else if yo != 0 then yo else double.nan;

#yos.SetPaintingStrategy(paintingstrategy.points);

yos.hidebubble();

Share this post


Link to post
Share on other sites

Yeah, TOS keeps changing their syntax with every other update. It is a very annoying habit of theirs!

 

Copy the text to a notepad and do a find replace.

 

You want to change all of the 'getdayofmonth' to just 'getday'

Share this post


Link to post
Share on other sites

There were a couple of extra spaces, and the bollingerbands reference was broken. This should work:

 

declare lower;

input Length = 20;

input price = close;

######################

def e1 = (Highest(High, length) + Lowest(low, length)) / 2 + Average(close, length);

def osc = Inertia(price - e1 / 2, length);

plot oscp = osc;

 

def diff = reference BollingerBandsSMA(length = 20)."upperband" - reference KeltnerChannels."Upper_Ba nd";

plot mid = 0;

mid.assignValueColor(if diff >= 0 then Color.UPTICK else Color.DOWNTICK);

 

#oscp.assignValueColor(if osc[1] < osc[0] then Color.CYAN else Color.magenta);

oscp.assignValueColor(if osc[1] < osc[0] then

if osc[0] >= 0 then

#UpPos

createColor(0, 255, 255) else

#UpNeg

createColor(204, 0, 204)

else if osc[0] >= 0 then

#DnPos

createColor(0, 155, 155) else

#DnNeg

createColor(255, 155, 255));

 

oscp.setPaintingStrategy( PaintingStrategy.HISTOGRAM);

mid.setPaintingStrategy(PaintingStrategy.POINTS);

Share this post


Link to post
Share on other sites

Hmmm. The extra spaces seem to be a problem with cutting/pasting into TL. The problem areas in my previous post are:

 

def diff = reference BollingerBandsSMA(length = 20)."upperband" - reference KeltnerChannels."Upper_Band";

oscp.setPaintingStrategy( PaintingStrategy.HISTOGRAM);

mid.setPaintingStrategy(PaintingStrategy.POINTS);

 

If you strip out these spaces, the indicator should verify...

Share this post


Link to post
Share on other sites

thanks to everybody here!!

suggestion--- the thinkscript manual is really scarce on examples-- it kind of assumes someone is familiar with coding generally. it would really be helpful if someone could explain SIMPLE functions in a concrete way, like building blocks to create a desired result. EXAMPLE: i'm struggling to write this simple code (and i'd appreciate any help- i keep getting errors)---

========================

1. to display two stocks upper (any format, candles or whatever, avg price or whatever)

2. single plot in lower study that shows the difference between the two stocks, but using the avg of daily hi+lo+close.===============================

see what i mean? if someone had a building block that showed them how to plot multiple stocks (upper), and another building block that showed them how to plot interactions (+,-, /,sqrt etc) of those stock values (lower), they could build many indicators.

anyway, just a suggestion and request from a frustrated newbie coder--

Dennis

Share this post


Link to post
Share on other sites

Hi Dennis,

 

First, I'm not a TOS coding expert, but I have played around a little. A good way to learn the language seems to be by looking at the predefined indicators that have source code. These are the ones with the little scroll or paper icon next to them (double click on it).

 

To your specific items, I played around a little and came up with these simple examples that you can expanded on (please share!):

 

1) display two stocks in upper:

 

# Simple example of plotting two stock in upper

# Data1 will be the primary stock you are viewing

plot Data1 = close;

# Data2 will be the comparison stock

plot Data2 = close("c");

 

2) display the difference between two stocks in lower:

declare lower;

def Data1 = close;

def Data2 = close("c");

plot Diff = Data1 - Data2;

 

There is also several "comparison" studies that compare your current stock to various others. It looks like you can change the line style and stock to compare to as well.

 

Hope that helps,

John

Share this post


Link to post
Share on other sites
Hi Dennis,

 

First, I'm not a TOS coding expert, but I have played around a little. A good way to learn the language seems to be by looking at the predefined indicators that have source code. These are the ones with the little scroll or paper icon next to them (double click on it).

 

To your specific items, I played around a little and came up with these simple examples that you can expanded on (please share!):

 

1) display two stocks in upper:

 

# Simple example of plotting two stock in upper

# Data1 will be the primary stock you are viewing

plot Data1 = close;

# Data2 will be the comparison stock

plot Data2 = close("c");

 

2) display the difference between two stocks in lower:

declare lower;

def Data1 = close;

def Data2 = close("c");

plot Diff = Data1 - Data2;

 

There is also several "comparison" studies that compare your current stock to various others. It looks like you can change the line style and stock to compare to as well.

 

Hope that helps,

John

wow!! thanks, John--- that was fast! okay, i'm going to play with this a bit and come back here to share--- thank YOU -- this is one of my simplest but most critical indicators

 

EDIT~~~ that was exactly what i meant by "building blocks" to help a newbie understand-- from your example i can see how to build some other stuff too

 

Bump: im still working on code you provided, John, which has much more potential than this from their manual--- somehow between the two i should be able to finally get exactly what i want---

++++++++++++++++++++++++++

declare lower;

plot data = close-close("enter symbol");

++++++++++++++++++++++++++

 

Bump: im still working on code you provided, John, which has much more potential than this from their manual--- somehow between the two i should be able to finally get exactly what i want---

++++++++++++++++++++++++++

declare lower;

plot data = close-close("enter symbol");

++++++++++++++++++++++++++

 

Bump: im still working on code you provided, John, which has much more potential than this from their manual--- somehow between the two i should be able to finally get exactly what i want---

++++++++++++++++++++++++++

declare lower;

plot data = close-close("enter symbol");

++++++++++++++++++++++++++

Share this post


Link to post
Share on other sites

....got a TTM squeeze indicator.....

....works very well..... as does TSI

....is that what you want ? ttm squeeze ?

 

..... anybody have a ERGODIC indicator for tos ?

 

.....anybody have any idea what settings to use with SMI indicator ?

Does anyone have the TTM Value Chart indicator for TOS?

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


  • Topics

  • Posts

    • AXON Enterprise stock, top of range breakout at https://stockconsultant.com/?AXON
    • FOUR Shift4 Payments stock with a solid breakout above 122.9, from Stocks to Watch at https://stockconsultant.com/?FOUR
    • EBS Emergent Biosolutions stock watch, pullback to 9.9 triple+ support area with bullish indicators at https://stockconsultant.com/?EBS
    • POAI Predictive Oncology stock with a bull flag breakout, target 2 area at https://stockconsultant.com/?POAI
    • Date: 18th February 2025.   UK Unemployment Rate Falls and The Pound Spikes Upwards.     The British Pound spikes upwards against all currencies as the UK releases its employment data. However, the latest employment data release does not give long-term confidence as the UK continues to see a higher possibility of economic stagnation in 2025. Can the GBP maintain momentum?   UK Releases Latest Employment Data! The UK employment data had its positive and negative points. The Monthly Unemployment Claims rose 22,000 which is at a 3 month high, and higher than analysts’ previous expectations. This is known to be negative for the British Pound. However, the UK also saw some positive data which investors are clinging onto. The UK Unemployment Rate fell for the first time since October 2024. The UK Unemployment Rate, to the surprise of analysts, fell from 4.5% to 4.4%. Lastly, the Average UK Salaries Index rose to 6.00%, the highest in 13 months and higher than previous expectations. This is the main reason why the GBP is increasing in value. That said, the Bank of England and economists continue to expect the UK to witness stagnation in 2025.     The British Pound The British Pound is now one of the best-performing currencies of the day so far. The US Dollar and Japanese Yen are also strongly increasing in value. The Governor of the Bank of England, Mr Bailey, is due to speak at 09:30 GMT and is likely to comment on the latest employment data.   Previously, Bailey described the UK’s economic growth as “static,” despite stronger-than-expected Q4 2024 data—0.1% growth instead of the forecasted –0.1% quarterly and 1.4% annually versus the expected 1.1%. Meanwhile, the BoE revised its 2025 GDP growth forecast down to 0.75% from 1.0% in November. Traders are also hoping Governor Bailey will comment on the possible future rate cuts.   Tomorrow at 09:00 (GMT+2), the UK will release January inflation data. Analysts expect the annual CPI to rise from 2.5% to 2.8%, while monthly prices may drop by 0.3% after a similar increase in December. The Core CPI is projected to climb from 3.2% to 3.6%.   When evaluating the GBP Index, the GBP is currently trading 0.95% higher in 2025. However, the upward price movement is largely due to last week’s Gross Domestic Product which beat expectations. The performance of the GBP will also depend on whether the US imposes tariffs. Additionally, pressure on the UK to increase defence spending could further strain the country's already scrutinized budget.   GBPUSD - Technical Analysis and Price Condition The GBPUSD is trading above the main moving averages on the 2-hour timeframe and is trading high on most oscillators. These factors indicate that the buyers are currently controlling momentum, but traders are concerned about two factors. The first is that the GBPUSD is struggling to break above the 1.26300 level and the fact that both the USD and GBP is simultaneously increasing in value. As both currencies are increasing in value, technical analysts view the price action as conflicting. On the 5-minute chart, the GBPUSD is trading at the 200-bar average price movement indicating a neutral signal. This also follows the concerns of traders that the price action is conflicting.     If the price breaks above 1.25918, the GBPUSD may witness sell signals materialize. However, if the price breaks above 1.26200, buy signals may arise which will also be in line with the indications on the 2-hour timeframe.   Key Takeaway Points: GBP rises as the UK employment data lifts GBP, but stagnation concerns remain. UK Salaries hit a 13-month high, boosting the Pound. The Bank of England Governor, Mr Bailey may hint at future rate cuts and advises the UK will witness economic stagnation. The key risks for the GBP remain inflation data, US tariffs, and UK defence spending pressure. Always trade with strict risk management. Your capital is the single most important aspect of your trading business.   Please note that times displayed based on local time zone and are from time of writing this report.   Click HERE to access the full HFM Economic calendar.   Want to learn to trade and analyse the markets? Join our webinars and get analysis and trading ideas combined with better understanding of how markets work. Click HERE to register for FREE!   Click HERE to READ more Market news.   Michalis Efthymiou HFMarkets   Disclaimer: This material is provided as a general marketing communication for information purposes only and does not constitute an independent investment research. Nothing in this communication contains, or should be considered as containing, an investment advice or an investment recommendation or a solicitation for the purpose of buying or selling of any financial instrument. All information provided is gathered from reputable sources and any information containing an indication of past performance is not a guarantee or reliable indicator of future performance. Users acknowledge that any investment in Leveraged Products is characterized by a certain degree of uncertainty and that any investment of this nature involves a high level of risk for which the users are solely responsible and liable. We assume no liability for any loss arising from any investment made based on the information provided in this communication. This communication must not be reproduced or further distributed without our prior written permission.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.