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.

chloe31

Automatic Pivots Calculation - Help

Recommended Posts

Hello,

 

I use the attached MC code to calculate the daily pivot points automatically. This calculation works very well when the session starts and ends in the same day (as an example, for futures on CAC40 (FCE), which opens at 8.00 am and closes at 10.00 pm in the same day). But for futures such as crude oil (CL), which opens at 6.00 pm and closes at 5.15 pm the next day, the automatic pivot points calculation does not work. :confused:

I would like to request your help to modify this code to take into account futures contracts whose session spreads on two days.

 

Thank you in advance for your help

Best regards,

 

Chloe

TTM DAILY PIVOTS.pla

Share this post


Link to post
Share on other sites

Plotting overnight high/low, that is a similar concept as they span two days, has been discussed before. Just search the forum for the examples and you should be able to adjust your code.

 

btw, I've noticed looking at your previous posts that the only time you post is when you need help installing, or modifying indicators. Everyone needs help sometimes, but forums are about give and take, not just about taking.

Share this post


Link to post
Share on other sites

Hello Sevensa,

 

I am realy sorry, but I am not very good at programming and my knowledge of the Easylanguage is limited. Therefore, it is very hard for me to provide help on the forum when people ask question related to coding. If I can help, I do it with great pleasure.

 

You wrote: " I've noticed looking at your previous posts that the only time you post is when you need help installing, or modifying indicators". I am sorry, but please look at my previous post again ! I posted two codes in the file TTM anchor, so I do not post only when I need help.

 

Chloe

Share this post


Link to post
Share on other sites

what Sevensa said was, this is a community... don't treat people like your personal tech support. Don't just come here when you needed help, and disappear when you are done. Everybody has something to offer, even the newest newbie... nobody asks you to share something that you are not good at (eg EL)... but how about some TA insight? or what is your rationale for trying to achieve what you want to do? Many people on this forum are long term consistently profitable traders, I don't think we "need" your "grail". We are more interested in helping traders to move up on their own ladder. The best way to solicite "help" is to have a dialog... without disrespect, I can tell you, 99% of the "help request" leads to nowhere; people are either analyzing the wrong thing, of putting too much energy on deciphering something that gives very little high quality trading signals, or something that gives lots of low quality trading signals. If you see people asking a seemingly simple technical question, but nobody bothers to answer... that's not because we are too snobbish to answer... but because we don't want to waste your time...

Edited by Tams

Share this post


Link to post
Share on other sites

Hello Tams,

 

I really do not understand why you are so agressive against me: "Don't just come here when you needed help, and disappear when you are done". I come on this forum each day, not only when I need help. Last week, a member of this forum sent a mail to me to request help to install the TTM anchor. I tried to help him as much as possible, so I think i offer my help in that case.

 

what is your rationale for trying to achieve what you want to do ? I trade CL, ES, YM, FCE with pivots point approach. I discovered that the code I used to calculate the pivot points was wrong with futures contracts whose session spread on two days. So, I would like to modify this code in order to have a good calculation of the pivot points, which I use for my daily trading.

 

The best way to solicite "help" is to have a dialog... without disrespect. I fully agree with you Tams. So, what do I have to do to silicite your hep ?

 

Thank you in advance

 

Best regards

Chloe

Share this post


Link to post
Share on other sites

nah... i am not aggressive against you... i have no need to

if my message was directed to you alone, i would have quoted you in my post.

this is a general message... it is the idea of community that i want to convey... a continuation of what sevensa was trying to say.

Share this post


Link to post
Share on other sites
... So, what do I have to do to silicite your hep ?

 

Thank you in advance

 

Best regards

Chloe

 

 

I like to help people who want to help themselves...

not everyone like my style, which is fine with me and fine with them.

 

i realize not everybody can think in terms of programming languages,

i would code for people who absolutely cannot code.

but before we get into coding, I would like to see what you have tried...

 

 

(ps. if I were to hand it to you without your participation, I would have to charge you for it, wouldn't I?)

Edited by Tams

Share this post


Link to post
Share on other sites

Take a look at the thread mentioned Chloe. I thought it was particularly good as a couple of programming novices came up with solutions. It was a good example of 'teach a man to fish'.

 

I do understand that a lot of traders will not want to expend energy programming and indicators.

Share this post


Link to post
Share on other sites

Hi Chloe

 

Take a look at this simple code. It plots Camarilla Lines and Yesterdays OHLC(Open rem out)

 

Perhaps put this on your other contracts and if it works for you then you can modify the arithmetic to account for your pivots.

 

If you need some additional help - check me back!

 

{Plots previous day Hi/Low/Close - Open {x} Out below}

{Plots Camarilla Lines}

{Rev date 07Aug09}

 

variables:

var0( 0 ) ,

var1( 0 ) ,

var2( 0 ) ,

var3( 0 ) ,

var4( 0 ) ,

var5( 0 ) ,

var6( 0 ) ,

var7( 0 ) ,

var8( 0 ) ;

 

if Date <> Date[1] then

begin

 

var0 = var0 + 1 ;

var1 = var2 ;

var3 = var4 ;

var5 = var6 ;

var7 = Close[1] ;

var2 = Open ;

var4 = High ;

var6 = Low ;

end

else

begin

if High > var4 then

var4 = High ;

if Low < var6 then

var6 = Low ;

end ;

condition1 = var0 >= 2 and BarType < 3 ;

 

value10 = ((var3 - var5)*(1.1/2)) + var7 ; {H4}

value20 = ((var3 - var5)*(1.1/4)) + var7 ; {H3}

value30 = ((var3 - var5)*(1.1/6)) + var7 ; {H2}

value40 = ((var3 - var5)*(1.1/12)) + var7 ; {H1}

value50 = var7 - ((var3 - var5)*(1.1/12)) ;{L1}

value60 = var7 - ((var3 - var5)*(1.1/6)) ;{L2}

value70 = var7 - ((var3 - var5)*(1.1/4)) ;{L3}

value80 = var7 - ((var3 - var5)*(1.1/2)) ; {L4}

 

if condition1 then

 

begin

Plot1( var1, "Y-O" ) ;

Plot2( var3, "Y-H" ) ;

Plot3( var5, "Y-L" ) ;

Plot4( var7, "Y-C" ) ;

Plot10( value10, "H4" ) ;

Plot20( value20, "H3" ) ;

Plot30( value30, "H2" ) ;

Plot40( value40, "H1" ) ;

Plot50( value50, "L1" ) ;

Plot60( value60, "L2" ) ;

Plot70( value70, "L3" ) ;

Plot80( value80, "L4" ) ;

end ;

Share this post


Link to post
Share on other sites

Hello Ranger,

 

Thank you very much for you help, I really appreciated.

 

I tried your code on CL contract (Mar 10)

 

Today is Tuesday. So, the session on CL started at 6.00 pm (EST time) and will end on Wednesday at 5.15 pm (EST time).

The previous session started at 6.00 pm (EST time) on Monday and ended on Tuesday at 5.15 pm (EST time).

To calculate the pivot points, I need the High, the Low and the Close pf the session that started at 6.00 pm (EST time) on Monday and ended on Tuesday at 5.15 pm (EST time). These values are as follows:

- High = 74.36

- Low = 73.71

- Close = 73.96

 

I tried your code, but it seems that your pivots are calculated on a session that starts at 12 am and ends at 11.59 p.m the same day. Am I right ?

How can I modify it to calculate pivots on a session that starts at 6.00 pm (EST time) on Monday and ends on Tuesday at 5.15 pm (EST time) ?

 

Many thanks in advance for your help

 

Bets regards,

Chloe

Share this post


Link to post
Share on other sites
Hello Ranger,

 

Thank you very much for you help, I really appreciated.

 

I tried your code on CL contract (Mar 10)

 

Today is Tuesday. So, the session on CL started at 6.00 pm (EST time) and will end on Wednesday at 5.15 pm (EST time).

The previous session started at 6.00 pm (EST time) on Monday and ended on Tuesday at 5.15 pm (EST time).

To calculate the pivot points, I need the High, the Low and the Close pf the session that started at 6.00 pm (EST time) on Monday and ended on Tuesday at 5.15 pm (EST time). These values are as follows:

- High = 74.36

- Low = 73.71

- Close = 73.96

 

I tried your code, but it seems that your pivots are calculated on a session that starts at 12 am and ends at 11.59 p.m the same day. Am I right ?

How can I modify it to calculate pivots on a session that starts at 6.00 pm (EST time) on Monday and ends on Tuesday at 5.15 pm (EST time) ?

 

Many thanks in advance for your help

 

Bets regards,

Chloe

 

Doesn't the thread we referred you to, explains exactly that with Globex High/Low? Other than wanting someone to write the code for you, since the answer was already provided, I am not sure what more you are looking for?

Share this post


Link to post
Share on other sites

Sevensa,

 

I am really sorry but:

 

1) today, I have no time to go to the Thread you advise me.

2) Ranger wrote: If you need some additional help - check me back!, that is the reason why I asked him my question: How can I modify it to calculate pivots on a session that starts at 6.00 pm (EST time) on Monday and ends on Tuesday at 5.15 pm (EST time) ?

 

I will try to code something based on the Thread you advise me, but not before this week-end.

 

Chloe

Share this post


Link to post
Share on other sites

Hi Chloe

 

Oh Boy ... you may need to renew your fan base. Perhaps send them chocolate chip cookies or hemlock ;o)

 

OK, I understand the issue more clearly .... let me see, if I can help you.

 

Cheers!!! michael

Share this post


Link to post
Share on other sites

Chloe I think the reason people are reticent is that you are expecting them to spend time to help but you are "too busy" to try to help yourself. I guess you can see how this might look lazy? If you are too busy to devote any time to this then perhaps you should wait until you have half an hour or so to spare?

 

The thread has the answers you seek. If you have difficulty understanding them then I am sure people will help you. They are unlikely to help if you have not done anything to help yourself. Actually strike that, looks like you have got ranger to waste there time re-inventing the wheel for you.

Share this post


Link to post
Share on other sites

added inputs for session times


{Plots previous day Hi/Low/Close - Open {x} Out below}
{Plots Camarilla Lines}
{Rev date 07Aug09}


input: SessStart(1803),SessEND(1615);

variables:
var0( 0 ) ,
var1( 0 ) ,
var2( 0 ) ,
var3( 0 ) ,
var4( 0 ) ,
var5( 0 ) ,
var6( 0 ) ,
var7( 0 ) ,
var8( 0 ) ,
SessReset( False ) ,
CamarillaReset( False ) ;


SessReset = t = SessEnd;
CamarillaReset = t = SessStart;

if SessReset then
begin

var0 = var0 + 1 ;
var1 = var2 ;
var3 = var4 ;
var5 = var6 ;
var7 = Close;
end;

if CamarillaReset then
begin

var2 = Open ;
var4 = High ;
var6 = Low ;
end

else
begin
if High > var4 then
var4 = High ;
if Low < var6 then
var6 = Low ;
end ;
condition1 = var0 >= 2 and BarType < 3 ;

value10 = ((var3 - var5)*(1.1/2)) + var7 ; {H4}
value20 = ((var3 - var5)*(1.1/4)) + var7 ; {H3}
value30 = ((var3 - var5)*(1.1/6)) + var7 ; {H2}
value40 = ((var3 - var5)*(1.1/12)) + var7 ; {H1}
value50 = var7 - ((var3 - var5)*(1.1/12)) ;{L1}
value60 = var7 - ((var3 - var5)*(1.1/6)) ;{L2}
value70 = var7 - ((var3 - var5)*(1.1/4)) ;{L3}
value80 = var7 - ((var3 - var5)*(1.1/2)) ; {L4}

if condition1 then

begin
Plot1( var1, "Y-O" ) ;
Plot2( var3, "Y-H" ) ;
Plot3( var5, "Y-L" ) ;
Plot4( var7, "Y-C" ) ;
Plot10( value10, "H4" ) ;
Plot20( value20, "H3" ) ;
Plot30( value30, "H2" ) ;
Plot40( value40, "H1" ) ;
Plot50( value50, "L1" ) ;
Plot60( value60, "L2" ) ;
Plot70( value70, "L3" ) ;
Plot80( value80, "L4" ) ;
end ;

Share this post


Link to post
Share on other sites
Chloe I think the reason people are reticent is that you are expecting them to spend time to help but you are "too busy" to try to help yourself. I guess you can see how this might look lazy? If you are too busy to devote any time to this then perhaps you should wait until you have half an hour or so to spare?

 

The thread has the answers you seek. If you have difficulty understanding them then I am sure people will help you. They are unlikely to help if you have not done anything to help yourself. Actually strike that, looks like you have got ranger to waste there time re-inventing the wheel for you.

Blow Fish

 

Actually Blow Fish, if I consider it time well spent, how can you judge from me that it's a waste of my time? If I can help Chloe, I will and thanks for mentioning the link again... I'll check it.

 

Anyway, I know that you're a good contributor as are the others and thanks for the comments.

 

And it's Ranger not ranger.

Share this post


Link to post
Share on other sites

Hello Everybody,

 

@Blowfish,

 

I have well understood your message. As I have already written, I will try to work this week-end in order to code something, based on your inputs (threat ,..).

Nevertheless, can you tell me what is the interest to have a coding forum here if we cannot request help for coding without being critisized ?

 

@Ranger,

 

Many thanks for your help, but I do not want you to sprend a lot of time on this code. I do not want you to waste you time. I do not know how to thank you !

 

@ Statsign,

 

Thank you very much for having modified the code coming from Ranger. I do not know how to thank you !

I will try this code this week-end, and I will try to code something.

I will keep you informed.

 

Thank you a lot !

Best regards

Chloe

Share this post


Link to post
Share on other sites
Blow Fish

 

Actually Blow Fish, if I consider it time well spent, how can you judge from me that it's a waste of my time? If I can help Chloe, I will and thanks for mentioning the link again... I'll check it.

 

Anyway, I know that you're a good contributor as are the others and thanks for the comments.

 

And it's Ranger not ranger.

 

Edit: I should say this is not to chastise Chloe, they seem to have had the brunt of it recently :D Simply in response to Ranger.

 

It's your time do as you please with it :) If you will learn something from it great. If you want to help someone that is to 'busy' to help themselves that is fine too.

 

The aforementioned thread has 2 or 3 (or maybe more) solutions to the problem presented.

 

Give a man a fish and you feed him for a day teach a man to fish and you feed him for life. You can lead a horse to water but you can not make him drink. Ok enough of the proverbs already.

 

I would have posted code that plot pivots, mid points, labels, price labels, irregular sessions, split sessions, multiple sessions (e.g. 2.5 days 5 days) weekly pivots, monthly pivots, etc. etc. Unfortunately I am a little busy right now.

Edited by BlowFish

Share this post


Link to post
Share on other sites

Blowfish,

 

You are a very funny guy !!

For your information, yesterday, I spent 2 hours from 1 amto 3 am, trying to find a solution to my problem, but with no succes. I am not as good as you at coding

 

I will try again this week end.

So, please stop writting this kind of sentence "someone that is to 'busy' to help themselves ", as it is absolutly wong for me. How can you judge me, you do not know me !!

 

Best regards,

Chloe

Share this post


Link to post
Share on other sites

this is funny

really funny

 

i am not trying to be sarcastic,

i am not a programmer, i know the pain you are going through.

 

but if you would just stop banging your head... and R-E-A-D,

you will find that the 2 really nice regular contributors here

have already given you the answer to your problem in post #2 and post #3.

(or should I say, pointed you to the right direction)

 

in case you still don't understand what they are talking about,

let me paraphrase...

 

Your request is not unique, nor was it asked the first time.

Various methods have been discussed.

The solution to your quest has already been DONE.

The code is posted in the "thread".

You can adjust it to meet your need.

The name of the thread is called "plotting globex highs and lows" or something like that...

Furthermore, there are several interesting approach to solve the problem,

and they are all presented in the thread.

 

hope the above helps

Edited by Tams

Share this post


Link to post
Share on other sites
this is funny

really funny

 

i am not trying to be sarcastic,

i am not a programmer, i know the pain you are going through.

 

but if you would just stop banging your head... and R-E-A-D,

you will find that the 2 really nice regular contributors here

have already given you the answer to your problem in post #2 and post #3.

(or should I say, pointed you to the right direction)

 

in case you still don't understand what they are talking about,

let me paraphrase...

 

Your request is not unique, nor was it asked the first time.

Various methods have been discussed.

The solution to your quest has already been DONE.

The code is posted in the "thread".

You can adjust it to meet your need.

The name of the thread is called "plotting globex highs and lows" or something like that...

Furthermore, there are several interesting approach to solve the problem,

and they are all presented in the thread.

 

hope the above helps

Tams

 

Gone through allot of your programming solutions and excellent tips.

 

You do nice work!

Share this post


Link to post
Share on other sites

Statsign

 

thanks for the modifications - glad you were able to help chloe.

 

Ranger

 

 

 

 

 

 

added inputs for session times


{plots previous day hi/low/close - open {x} out below}
{plots camarilla lines}
{rev date 07aug09}


input: Sessstart(1803),sessend(1615);

variables:
Var0( 0 ) ,
var1( 0 ) ,
var2( 0 ) ,
var3( 0 ) ,
var4( 0 ) ,
var5( 0 ) ,
var6( 0 ) ,
var7( 0 ) ,
var8( 0 ) ,
sessreset( false ) ,
camarillareset( false ) ;


sessreset = t = sessend;
camarillareset = t = sessstart;

if sessreset then
begin

var0 = var0 + 1 ;
var1 = var2 ;
var3 = var4 ;
var5 = var6 ;
var7 = close;
end;

if camarillareset then
begin

var2 = open ;
var4 = high ;
var6 = low ;
end

else
begin
if high > var4 then
var4 = high ;
if low < var6 then
var6 = low ;
end ;
condition1 = var0 >= 2 and bartype < 3 ;

value10 = ((var3 - var5)*(1.1/2)) + var7 ; {h4}
value20 = ((var3 - var5)*(1.1/4)) + var7 ; {h3}
value30 = ((var3 - var5)*(1.1/6)) + var7 ; {h2}
value40 = ((var3 - var5)*(1.1/12)) + var7 ; {h1}
value50 = var7 - ((var3 - var5)*(1.1/12)) ;{l1}
value60 = var7 - ((var3 - var5)*(1.1/6)) ;{l2}
value70 = var7 - ((var3 - var5)*(1.1/4)) ;{l3}
value80 = var7 - ((var3 - var5)*(1.1/2)) ; {l4}

if condition1 then

begin
plot1( var1, "y-o" ) ;
plot2( var3, "y-h" ) ;
plot3( var5, "y-l" ) ;
plot4( var7, "y-c" ) ;
plot10( value10, "h4" ) ;
plot20( value20, "h3" ) ;
plot30( value30, "h2" ) ;
plot40( value40, "h1" ) ;
plot50( value50, "l1" ) ;
plot60( value60, "l2" ) ;
plot70( value70, "l3" ) ;
plot80( value80, "l4" ) ;
end ;

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

    • also ... and barely on topic... Winners (always*) overpay. Buying the dips is a subscription to the belief that winners win by underpaying - when in actuality winners (inevitably/always*) win by overpaying... it’s amazing the percentage of traders who think winners win by underpaying ... “Winners (always*) overpay.” ...  One way to implement this ‘belief’ is to only reenter when prices have emphatically resumed the 'trend' .   (Fwiw, While “Winners (always*) overpay.” holds true in most endeavors (relationships, business, sports, etc...) - “Winners (always*) overpay.”  is especially true for auctions... continuous auctions included.)
    • re:  "Does it make sense to always buy the dips?  “Buy the dip.”  You hear this all the time in crypto investing trading speculation gambling. [zdo taking some liberties] It refers, of course, to buying more bitcoin (or digital assets) when they go down in price: when the price “dips.” Some people brag about “buying the dip," showing they know better than the crowd. Others “buy the dip” as an investment strategy: they’re getting a bargain. The problem is, buying the dip is a fallacy. You can’t buy the dip, because you can't see the total dip until much later. First, I’ll explain this in a way that will make it simple and obvious to you; then I’ll show you a better way of investing. You Only Know the Dip in Hindsight When people talk about “buying the dip,” what they’re really saying is, “I bought when the price was going down.” " ... example of a dip ... 
    • Date: 19th April 2024. Weekly Commodity Market Update: Oil Prices Correct and Supply Concerns Persist.   The ongoing developments in the Middle East sparked a wave of risk aversion and fueled supply concerns and investors headed for safety. Hopes for imminent rate cuts from the Federal Reserve diminish while attention is now turning towards the demand outlook. The Gold price hit a high of $2417.89 per ounce overnight. Sentiment has already calmed down again and bullion is trading at $2376.50 per ounce as haven flows ease. Oil prices initially moved higher as concern over escalating tensions with the WTI contract hit a session high of $85.508 per barrel overnight, before correcting to currently $81.45 per barrel. Oil Prices Under Pressure Amid Middle East Tensions Last week, commodity indexes showed little movement, with Oil prices undergoing a slight correction. Meanwhile, Gold reached yet another record high, mirroring the upward trend in cocoa prices. Once again today, USOil prices experienced a correction and has remained under pressure, retesting the 50-day EMA at $81.00 as we moving into the weekend. Hence, despite the Israel’s retaliatory strike on Iran, sentiments stabilized following reports suggesting a measured response aimed at avoiding further escalation. Brent crude futures witnessed a more than 4% leap, driven by concerns over potential disruptions to oil supplies in the Middle East, only to subsequently erase all gains. Similarly with USOIL, UKOIL hovers just below $87 per barrel, marginally below Thursday’s closing figures. Nevertheless, volatility is expected to continue in the market as several potential risks loom:   Disruption to the Strait of Hormuz: The possibility of Iran disrupting navigation through the vital shipping lane, is still in play. The Strait of Hormuz serves as the Persian Gulf’s primary route to international waters, with approximately 21 million barrels of oil passing through daily. Recent events, including Iran’s seizure of an Israel-linked container ship, underscore the geopolitical sensitivity of the region. Tougher Sanctions on Iran: Analysts speculate that the US may impose stricter sanctions on Iranian oil exports or intensify enforcement of existing restrictions. With global oil consumption reaching 102 million barrels per day, Iran’s production of 3.3 million barrels remains significant. Recent actions targeting Venezuelan oil highlight the potential for increased pressure on Iranian exports. OPEC Output Increases: Despite the desire for higher prices, OPEC members such as Saudi Arabia and Russia have constrained output in recent years. However, sustained crude prices above $100 per barrel could prompt concerns about demand and incentivize increased production. The OPEC may opt to boost oil output should tensions escalate further and prices surge. Ukraine Conflict: Amidst the focus on the Middle East, markets overlooking Russia’s actions in Ukraine. Potential retaliatory strikes by Kyiv on Russian oil infrastructure could impact exports, adding further complexity to global oil markets.   Technical Analysis USOIL is marking one of the steepest weekly declines witnessed this year after a brief period of consolidation. The breach below the pivotal support level of 84.00, coupled with the descent below the mid of the 4-month upchannel, signals a possible shift in market sentiment towards a bearish trend reversal. Adding to the bearish outlook are indications such as the downward slope in the RSI. However, the asset still hold above the 50-day EMA which coincides also with the mid of last year’s downleg, with key support zone at $80.00-$81.00. If it breaks this support zone, the focus may shift towards the 200-day EMA and 38.2% Fib. level at $77.60-$79.00. Conversely, a rejection of the $81 level and an upside potential could see the price returning back to $84.00. A break of the latter could trigger the attention back to the December’s resistance, situated around $86.60. A breakthrough above this level could ignite a stronger rally towards the $89.20-$90.00 zone. 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 on how markets work. Click HERE to register for FREE! Click HERE to READ more Market news. Michalis Efthymiou Market Analyst HMarkets 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 perfrmance is not a guarantee or reliable indicator of future performance. Users acknowledge that any investment in FX and CFDs 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.
    • Date: 18th April 2024. Market News – Stock markets benefit from Dollar correction. Economic Indicators & Central Banks:   Technical buying, bargain hunting, and risk aversion helped Treasuries rally and unwind recent losses. Yields dropped from the recent 2024 highs. Asian stock markets strengthened, as the US Dollar corrected in the wake of comments from Japan’s currency chief Masato Kanda, who said G7 countries continue to stress that excessive swings and disorderly moves in the foreign exchange market were harmful for economies. US Stockpiles expanded to 10-month high. The data overshadowed the impact of geopolitical tensions in the Middle East as traders await Israel’s response to Iran’s unprecedented recent attack. President Joe Biden called for higher tariffs on imports of Chinese steel and aluminum.   Financial Markets Performance:   The USDIndex stumbled, falling to 105.66 at the end of the day from the intraday high of 106.48. It lost ground against most of its G10 peers. There wasn’t much on the calendar to provide new direction. USDJPY lows retesting the 154 bottom! NOT an intervention yet. BoJ/MoF USDJPY intervention happens when there is more than 100+ pip move in seconds, not 50 pips. USOIL slumped by 3% near $82, as US crude inventories rose by 2.7 million barrels last week, hitting the highest level since last June, while gauges of fuel demand declined. Gold strengthened as the dollar weakened and bullion is trading at $2378.44 per ounce. Market Trends:   Wall Street closed in the red after opening with small corrective gains. The NASDAQ underperformed, slumping -1.15%, with the S&P500 -0.58% lower, while the Dow lost -0.12. The Nikkei closed 0.2% higher, the Hang Seng gained more than 1. European and US futures are finding buyers. A gauge of global chip stocks and AI bellwether Nvidia Corp. have both fallen into a technical correction. The TMSC reported its first profit rise in a year, after strong AI demand revived growth at the world’s biggest contract chipmaker. The main chipmaker to Apple Inc. and Nvidia Corp. recorded a 9% rise in net income, beating estimates. 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 on how markets work. Click HERE to register for FREE! Click HERE to READ more Market news. Andria Pichidi Market Analyst 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 FX and CFDs 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.
    • Date: 17th April 2024. Market News – Appetite for risk-taking remains weak. Economic Indicators & Central Banks:   Stocks, Treasury yields and US Dollar stay firmed. Fed Chair Powell added to the recent sell off. His slightly more hawkish tone further priced out chances for any imminent action and the timing of a cut was pushed out further. He suggested if higher inflation does persist, the Fed will hold rates steady “for as long as needed.” Implied Fed Fund: There remains no real chance for a move on May 1 and at their intraday highs the June implied funds rate future showed only 5 bps, while July reflected only 10 bps. And a full 25 bps was not priced in until November, with 38 bps in cuts seen for 2024. US & EU Economies Diverging: Lagarde says ECB is moving toward rate cuts – if there are no major shocks. UK March CPI inflation falls less than expected. Output price inflation has started to nudge higher, despite another decline in input prices. Together with yesterday’s higher than expected wage numbers, the data will add to the arguments of the hawks at the BoE, which remain very reluctant to contemplate rate cuts. Canada CPI rose 0.6% in March, double the 0.3% February increase BUT core eased. The doors are still open for a possible cut at the next BoC meeting on June 5. IMF revised up its global growth forecast for 2024 with inflation easing, in its new World Economic Outlook. This is consistent with a global soft landing, according to the report. Financial Markets Performance:   USDJPY also inched up to 154.67 on expectations the BoJ will remain accommodative and as the market challenges a perceived 155 red line for MoF intervention. USOIL prices slipped -0.15% to $84.20 per barrel. Gold rose 0.24% to $2389.11 per ounce, a new record closing high as geopolitical risks overshadowed the impacts of rising rates and the stronger dollar. Market Trends:   Wall Street waffled either side of unchanged on the day amid dimming rate cut potential, rising yields, and earnings. The major indexes closed mixed with the Dow up 0.17%, while the S&P500 and NASDAQ lost -0.21% and -0.12%, respectively. Asian stock markets mostly corrected again, with Japanese bourses underperforming and the Nikkei down -1.3%. Mainland China bourses were a notable exception and the CSI 300 rallied 1.4%, but the MSCI Asia Pacific index came close to erasing the gains for this year. 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 on how markets work. Click HERE to register for FREE! Click HERE to READ more Market news. Andria Pichidi Market Analyst 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 FX and CFDs 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.vvvvvvv
×
×
  • Create New...

Important Information

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