All Activity
- Past hour
-
Croota48 joined the community
-
Forex Basics 4 Advanced&Beginner Traders
binaryowner replied to StefGrig's topic in General Forex Discussions
I’d say starting with trend following using moving averages or RSI is solid. My experience with HFM shows that combining a demo account with strict risk rules builds very good foundations quickly -
Hello Thanks, unfortunately I only work with MetaTrader 4. Can you code for MetaTrader 4? But regarding the moon method, I have also worked with 27 days, but these (Full Moon/Waxing Moon/New Moon/Waning Moon)did not work, It does not work in a month.These are just events that become more intense when you calculate a phenomenon close to these. . Even based on the combination of the moon angle with other planets, you may get about 40% of the answer. I have not tried the three methods because I do not know them. 1. Olga's method in the video above 2. The numerical method of the moon. I only know that this method uses the moon itself and not its combinations with other planets. 3. The method of the nakashtara.
- Today
-
setare reacted to a post in a topic: Lunar Vibrations
-
Market Technical Analysis by RoboForex
RBFX Support replied to RBFX Support's topic in Technical Analysis
EURUSD declines after ECB decision The EURUSD rate corrected towards the 1.1730 area following the ECB's decision to keep interest rates unchanged. The market awaits the outcome of trade agreement negotiations between the US and the EU. Find out more in our analysis for 25 July 2025. EURUSD technical analysis On the H4 chart, EURUSD is undergoing a downward correction, falling this morning to the 1.1730 area, with further decline towards the 1.1700 support level possible. The daily trend for the pair remains upward, so after the correction ends, the rally may continue. The EURUSD pair corrected to the 1.1730 area following the ECB’s decision to leave rates unchanged. Read more - EURUSD Forecast Attention! Forecasts presented in this section only reflect the author’s private opinion and should not be considered as guidance for trading. RoboForex bears no responsibility for trading results based on trading recommendations described in these analytical reviews. Sincerely, The RoboForex Team -
roboforex Market Fundamental Analysis by RoboForex
RBFX Support replied to RBFX Support's topic in Fundamental Analysis
The Fed exposed! Azoria Capital demands transparency – what is next for XAUUSD Amid a lawsuit against the Federal Reserve and deteriorating US economic indicators, XAUUSD may test the 3,420 USD level. Discover more in our analysis for 25 July 2025. XAUUSD forecast: key trading points Azoria Capital filed a lawsuit against the US Federal Reserve US durable goods orders: previously at 16.4%, projected at -10.4% XAUUSD forecast for 25 July 2025: 3,420 Fundamental analysis Today’s XAUUSD analysis shows that gold is trading around 3,358 USD per ounce, pulling back after reaching the 3,431 USD resistance level earlier this week. Azoria Capital, a financial management company, has filed a lawsuit against the Federal Reserve, including Chairman Jerome Powell and other central bank officials. The claim argues that the Fed violates the 1976 federal law by holding closed meetings on interest rate decisions. Azoria Capital demands that all such meetings be made public starting next week. RoboForex Market Analysis & Forex Forecasts Attention! Forecasts presented in this section only reflect the author’s private opinion and should not be considered as guidance for trading. RoboForex bears no responsibility for trading results based on trading recommendations described in these analytical reviews. Sincerely, The RoboForex Team- 285 replies
-
- anlaysis
- dailyanalysis
-
(and 3 more)
Tagged with:
-
Moon Cycles: If it can be useful to someone, I insert here the formulas: in Easylanguage (for Tradestation and Multicharts), for Amibroker and Metastock. ---------------------------------------------------------------------------- Lunar Cycles for Tradestation and Multicharts: for Full Moon Cycles, obviously changing the dates, you can insert also the New Moon Cycles. LUNARCYCLE: Plots a dot every 27 days, so if you type a full moon date as the input, it will continue to show you full moon days. Note: Date should be entered as YYMMDD. --------------------------------------------------------------------------- Function: LUNARCICLE [LegacyColorValue = true]; Input: MOON1(Numeric); LUNARCICLE = INTPORTION((DATETOJULIAN(DATE) - DATETOJULIAN(MOON1)) / 27) ----------------------------------------------------------------------------- Indicator: [LegacyColorValue = true]; INPUT:VALUE(960305); VALUE1 = LUNARCICLE(VALUE); IF VALUE1 > VALUE1[1] THEN PLOT1(H,"FULLMOON"); ---------------------------------------------------------------------------------- To be included in the: ShowMe: {Full_Moon} Vars:AstroJul(0),Phase(0); AstroJul =DateToJulian(Date)+ 2415019 ; Print("Date",Date); Phase = (AstroJul+4.867) / 29.53059 ; Phase = FracPortion(Phase); Print("Phase",Phase); If Phase >= 0.90 then print("Full Moon"); If Phase >= 0.5 and phase <= 0.90 then print("Waxing Moon"); If Phase >= 0.47 and phase <= 0.5 then print( "New Moon"); If Phase <= 0.5 and Phase >= 0.2 then print("Waning Moon"); If Phase >=0.90 then Plot1(High,"SHOWME"); ----------------------------------------------------------- {New_Moon} Vars:AstroJul(0),Phase(0); AstroJul =DateToJulian(Date)+ 2415019 ; Print("Date",Date); Phase = (AstroJul+4.867) / 29.53059 ; Phase = FracPortion(Phase); Print("Phase",Phase); If Phase >= 0.90 then print("Full Moon"); If Phase >= 0.5 and phase <= 0.90 then print("Waxing Moon"); If Phase >= 0.47 and phase <= 0.5 then print( "New Moon"); If Phase <= 0.5 and Phase >= 0.2 then print("Waning Moon"); If Phase >=0.45 and phase <= 0.52 then Plot1(High,"SHOWME"); ====================================================================================== Lunar Cycles for AmiBroker: _SECTION_BEGIN( "Price Chart" ); SetChartOptions( 0, chartShowArrows | chartShowDates ); //GraphXSpace = 5; Y = SelectedValue(Year()); M = SelectedValue(Month()); D = SelectedValue(Day()); Hr = SelectedValue(Hour()); Mn = SelectedValue(Minute()); // normalize values to range 0...1 function normalize( Val ) { Val = Val - floor( Val ); if (Val < 0) {Val = Val + 1;} return Val; } // Set Pi. PI = 3.1415926535897932385; // calculate the Julian Date at 12H UT YY = Y - floor( ( 12 - M ) / 10 ); MM = M + 9; if (MM >= 12) {MM = MM - 12;} K1 = floor( 365.25 * ( YY + 4712 ) ); K2 = floor( 30.6 * MM + 0.5 ); K3 = floor( floor( ( YY / 100 ) + 49 ) * 0.75 ) - 38; JD = K1 + K2 + D + 59; // for dates in Julian calendar if (JD > 2299160) {JD = JD - K3;} // for Gregorian calendar // calculate moon's age in days IP = normalize( ( JD - 2451550.1 ) / 29.530588853 ); AG = IP*29.53; Phase = "NEW"; if (AG < 27.68493) {Phase = "Waning crescent";S1=4;S2=8;} if (AG < 23.99361) {Phase = "Last quarter";S1=4;S2=12;} if (AG < 20.30228) {Phase = "Waning gibbous";S1=6;S2=14;} if (AG < 16.61096) {Phase = "FULL";S1=6;S2=15;} if (AG < 12.91963) {Phase = "Waxing gibbous";S1=6;S2=7;} if (AG < 9.22831) {Phase = "First quarter";S1=2;S2=3;} if (AG < 5.53699) {Phase = "Waxing crescent";S1=2;S2=1;} if (AG < 1.84566) {Phase = "NEW";S1=0;S2=0;} IP1 = IP; IP = IP*2*PI; // Convert phase to radians // calculate moon's distance DP = 2*PI*normalize( ( JD - 2451562.2 ) / 27.55454988 ); DI = 60.4 - 3.3*cos( DP ) - 0.6*cos( 2*IP - DP ) - 0.5*cos( 2*IP ); // calculate moon's ecliptic latitude NP = 2*PI*normalize( ( JD - 2451565.2 ) / 27.212220817 ); LA = 5.1*sin( NP ); // calculate moon's ecliptic longitude RP = normalize( ( JD - 2451555.8 ) / 27.321582241 ); LO = 360*RP + 6.3*sin( DP ) + 1.3*sin( 2*IP - DP ) + 0.7*sin( 2*IP ); Zodiac = "Pisces"; if (LO < 348.58) {Zodiac = "Aquarius";} if (LO < 311.72) {Zodiac = "Capricorn";} if (LO < 302.49) {Zodiac = "Sagittarius";} if (LO < 271.26) {Zodiac = "Scorpio";} if (LO < 242.57) {Zodiac = "Libra";} if (LO < 224.17) {Zodiac = "Virgo";} if (LO < 173.34) {Zodiac = "Leo";} if (LO < 135.30) {Zodiac = "Cancer";} if (LO < 119.48) {Zodiac = "Gemini";} if (LO < 93.44) {Zodiac = "Taurus";} if (LO < 51.16) {Zodiac = "Aries";} if (LO < 33.18) {Zodiac = "Pisces";} Plot( C, "Close", colorBrightGreen, styleNoTitle | ParamStyle( "Style" ) | GetPriceStyle() ); _N(Title = Name() + " - " + Date() + " Open " + C + " High " + H + " Low " + L + " Close " + C + "\n" + "Age: " + AG + " Phase: " + Phase + "\n" + "Distance: " + DI + " earth radii ecliptic\n" + "Latitude = " + LA + "°\n" + "Longitude = " + LO + "°\n" + "Constellation = " + Zodiac+ "\n" + "IP: " + IP1); _SECTION_END(); _SECTION_BEGIN("Lunar Cycle"); // Input your local time zone TZ=Param("Your local Time Zone? [-12 to +12hrs]",5.5, -12,12,1); // Lunar cycle LunarMonth=29.530589; Offset=7.254621; // Calendar } leap=frac(Year( )/4)==0 AND frac(Year()/ 100)!=0 OR frac(Year()/ 400)==0; y=Year()*365+ int(Year( )/4)-int( Year()/100) +int(Year( )/400); m= IIf(Month()==2,31-leap, IIf(Month()==3,59, IIf(Month()==4,90, IIf(Month()==5,120, IIf(Month()==6,151, IIf(Month()==7,181, IIf(Month()==8,212, IIf(Month()==9,243, IIf(Month()==10,273, IIf(Month()==11,304, IIf(Month()==12,334, -leap))))))) )))); CurrentDay=y+ m+Day()-TZ/ 24-Offset; // Full Moon } FM=frac(CurrentDay/ LunarMonth) ; FM=PeakBars( FM, 1, 1)==0; // New Moon } NM=frac((CurrentDay +LunarMonth/ 2)/LunarMonth) ; NM=PeakBars( NM, 1,1)==0; FullMoon=FM-NM==1; NewMoon=FM-NM==-1; //Plot Moon Phase on main chart MC = ParamToggle("Moon Cycle","Show|Hide",0); shape = IIf(FullMoon,shapeCircle+shapePositionAbove,IIf(NewMoon,shapeCircle+shapePositionAbove,Null)); if(MC==1) PlotShapes(shape,IIf(FullMoon,colorWhite,colorYellow),0,H); _SECTION_END(); ============================================================================================================== Lunar Cycles for Metastock: {Lunar cycles - by Jose Silva} {Full/New/Q1/Q3 Moon signals indicator Mk XV. Plots: +1 signal on Full Moon; -1 on New Moon; +0.5 on first Quarter; -0.5 on last Quarter. Accurate to within 2 hours every 19 years. Signals that fall on holidays or weekends are plotted on the next trading day. Use the signal advance input to view approaching signals. Adj lunar signals to market's local Time Zone (generally add 1hr for Daylight Saving Time): New Zealand: +12hrs Australia: +10 Japan: +9 SE Asia: +8 Thai/Indonesia: +7 India: +5.5 Dubai: +4 Moscow: +3 Europe: +1 UK & Portugal: 0 USA, NY: -5 Chicago: -6 http://www.travel.com.hk/region/timezone.htm Copyright © 2001-2009 Jose Silva. The grant of this license is for personal use only - no resale or repackaging allowed. All code remains the property of Jose Silva.} { User inputs } TZ:=Input("Market's local Time Zone? [-12hrs to +12hrs]",-12,12,-5); shift:=Input("Advance signal by x calendar days",-30,30,0); plot:=Input("Plot Q1 and Q3 (half) signals? [1]Yes, [0]No",0,1,0); { Lunar cycle length in days (synodic month) } LunarMonth:=29.53059; offset:=4.86; { Calendar engine } y:=Year()-(Month()<3); leap:=Int(y/4)-Int(y/100)+Int(y/400); mth:=Int((2+153*(Month()-3+12*(Month()<3)))/5); dayNr:=DayOfMonth()+mth+y*365+leap-657382 -offset-TZ/24+shift; { New/Q1/Full/Q3 Moon cycles } NM:=Frac((DayNr+LunarMonth/2)/LunarMonth); Q1:=Frac((DayNr+LunarMonth/4)/LunarMonth); FM:=Frac(DayNr/LunarMonth); Q3:=Frac((DayNr-LunarMonth/4)/LunarMonth); { Lunar cycle signals } cycle:=FM-NM; FM:=cycle<0 AND Alert(cycle>0,2); NM:=-(cycle>0 AND Alert(cycle<0,2)); cycle:=Q1-Q3; Q1:=(cycle<0 AND Alert(cycle>0,2))*.5; Q3:=(cycle>0 AND Alert(cycle<0,2))*-.5; signals:=If(plot=1,NM+Q1+FM+Q3,NM+FM); { Plot Lunar signals in own window } signals ------------------------------------------------------------------------------------
-
Hello Who knows this method or has worked with it? https://www.youtube.com/watch?v=v0BhlY6dPP0&t=18s Has anyone worked on the market by calculating the moon through numerology, although they did not get accurate results? The combination of the moon, such as the new moon and the full moon, or the combination of the angle of the moon with the sun, Saturn, Mercury, and astrology, I do not mean just the moon itself and numerology. I even think they trade with the houses of the moon nakshatras but I don't know how. Is there anyone who can send a book or source on this? (The moon has 28 houses of nakshatras but how should one trade by understanding these 28 houses?)
-
Olga Morales, Astrology For Gann Traders Advanced level
setare replied to poli's topic in Forex Clips & Movies
up -
Hello, I require Gary Dayton Deep Practice videos, 6 weeks to turn fear to profits course. If anyone has these kindly help. Thanks a lot.
-
Karmaloop reacted to a post in a topic: H.FT_S.PECTRE_L.ITE_V2.1
-
fxzero.dark reacted to a post in a topic: Interesting bots
-
Has anyone come across this one? Specifically looking for quantsniper and quantfalcon.
- Yesterday
-
jquiroz75 reacted to a post in a topic: Interesting bots
-
stephy365 joined the community
-
Anyone can educate with Viper Trading Indicator?
roddizon1978 replied to Tasfy's topic in Ninja Trader 8
I need your help for this 2 scammers before I post more, 8 more videos to go Posted yesterday at 02:14 PM (edited) -
Anyone can educate with Viper Trading Indicator?
roddizon1978 replied to Tasfy's topic in Ninja Trader 8
My trade today -
I had this happened on a bot I tested (and decided not to use for various reasons!) a while back. This happens when the strategy sync's the strategy position with the live position ignoring the time it was enabled (when actually the trade was well past the point of entry). So a trade based on past signal would be entered as a new trade when we enable the strategy which is bad and needs fixing! It should wait for a new signal to enter trade after enabling, and not enter a trade based on a past signal immediately upon enabling! Apparently it was a minor fix according to a developer in a chat back then...
-
⭐ goldeneagle1 reacted to a post in a topic: Interesting bots
-
sxzora joined the community
-
jquiroz75 reacted to a post in a topic: Interesting bots
-
jquiroz75 reacted to a post in a topic: Interesting bots
-
⭐ fryguy1 reacted to a post in a topic: Anyone can educate with Viper Trading Indicator?
-
Ninja_On_The_Roof reacted to a post in a topic: Anyone can educate with Viper Trading Indicator?
-
HFMarkets (hfm.com): Market analysis services.
AllForexnews replied to AllForexnews's topic in Fundamental Analysis
Date: 24th July 2025. SNP500 Hits New Highs Backed by Strong Earnings and Trade Optimism. The SNP500 again renews its all-time highs after finding support from Alphabet stocks, NVIDIA, JP Morgan and Broadcom. The SNP500 is now trading 8.40% higher in 2025, more or less matching the performance of the NASDAQ. The main driver of the current upward trend is recent quarterly earnings reports and the US-Japan trade deal. Alphabet Quarterly Earnings Report There were both positive and negative data from Alphabet’s earnings report, but the stock rose 1.72% after market close. The quarterly report showed the company’s revenue and operating income rose 14%, cloud revenue 32% and the earnings per share rose 22% to $2.31. The figures continue to beat projections, which is one of the reasons why the stock has risen 1.72% and more than 14% over the past month. Google Cloud revenue rose 32% to $13.6 billion, driven by strong growth in core GCP products, AI infrastructure, and generative AI solutions. AI remains a key driver, with Alphabet’s Gemini model now integrated across its cloud services and productivity tools. Although still behind OpenAI’s ChatGPT in user adoption, Gemini is helping Alphabet attract more enterprise clients. In addition to this, the search figures also remain steady and within the projected range. According to the report, Google searches make up approximately 90% of the global searches. However, one of the main negatives from the report is AI spending compared to ROI (return on investment). Alphabet reported $22.4 billion in capital spending, well above the $18.2 billion expected. It also raised its 2025 capex forecast from $75 billion to $85 billion, highlighting its aggressive investment in data centres, AI chips, and infrastructure. If the return on investment from AI products read higher, experts believe the stock increase would have been higher than the current rise. Nonetheless, the increase continues to support the NASDAQ. SNP500 Components and Stocks Of the SNP500’s most influential 15 stocks, 74% rose in value on Wednesday. In addition to this, the VIX index continues to decline, as does the Put and Call Ratio. All these factors provide strong buy signals for the SNP500 and stocks in general. The main stocks, bar Alphabet stocks, which are supporting the recent upward price movements, are NVIDIA, Broadcom and JP Morgan. NVIDIA is the most influential stock for the SNP500, holding a weight of more than 7.00%. NVIDIA stocks rose 2.25% on Wednesday and a further 1.20% after market close. Broadcom stocks, which hold a weight of 2.33%, are one of the best-performing stocks on Thursday. Both the technology sector and banking stocks continue to perform well while defensive stocks underperform due to the ‘risk-on’ appetite of the market. The higher investor sentiment is mainly being prompted by the US-Japan trade deal. SNP500 Technical Analysis SNP500 5-Minute Chart The SNP500 continues to form higher highs and higher lows, ensuring the wave ensuing continues to point to an upward trend. The price also remains above the trend-line, the 75-bar Exponential Moving Average and in the ‘buy’ zone of most oscillators. However, the price is trading below the day’s VWAP, and order flow currently points towards limited buy demand. For this reason, the outlook for the SNP500 remains bullish, but bullish momentum needs to be regained. European PMI reports from earlier this morning read positively, if the global PMI data continues to beat expectations, bullish momentum may gain speed. The price is also close to the 200-bar EMA, which can act as a support level. Traders will monitor if the price bounces off this level. Key Takeaway Points: The SNP500 hits new all-time highs, driven by Alphabet, NVIDIA, Broadcom, and JP Morgan. Alphabet’s earnings beat forecasts, with strong cloud growth and steady search performance boosting investor confidence. Capital spending rose to $22.4B, with AI investments raising concerns over return on investment. Technical Analysis remain bullish, but momentum needs to recover; global PMI data could reignite buying 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. -
Why do you guys trade forex and not futures? Futures markets are centralized. In FX even volume is just the broker's volume, there is no centralized exchange. I'm just curious that from all markets why exactly forex is your choice.
-
Even we can do the right thing to withdraw profits leaving the necessary capital with our broker to stay on safe side.
-
No, just price action with Fibo levels
-
roboforex Market Fundamental Analysis by RoboForex
RBFX Support replied to RBFX Support's topic in Fundamental Analysis
JP 225 forecast: the index has entered a sideways channel The JP 225 stock index has formed a sideways channel within an overall uptrend. Today’s JP 225 forecast is positive. JP 225 forecast: key trading points Recent data: Japan’s core CPI came in at 3.3% in June Market impact: this signals slower price growth, which may positively affect the Japanese stock market Fundamental analysis Japan’s core Consumer Price Index (core CPI) for July 2025 stood at 3.3% year-on-year, below the forecast of 3.4% and the previous reading of 3.7%. Lower inflation reduces pressure on the Bank of Japan to tighten monetary policy. This creates a positive environment across most sectors. Consumer companies stand to benefit the most, as the risk of falling real incomes lessens. Technology and export-oriented firms also benefit, since weak inflation increases the likelihood of continued accommodative monetary policy. The financial sector, on the other hand, may be at a disadvantage because easing inflation reduces the odds of interest rate hikes, thus capping banks’ margin growth. Meanwhile, the construction and real estate segments may gain support amid expectations of continued low borrowing costs. RoboForex Market Analysis & Forex Forecasts Attention! Forecasts presented in this section only reflect the author’s private opinion and should not be considered as guidance for trading. RoboForex bears no responsibility for trading results based on trading recommendations described in these analytical reviews. Sincerely, The RoboForex Team- 285 replies
-
- anlaysis
- dailyanalysis
-
(and 3 more)
Tagged with:
-
Market Technical Analysis by RoboForex
RBFX Support replied to RBFX Support's topic in Technical Analysis
Gold (XAUUSD) falls below 3,400 USD amid correction XAUUSD prices reversed downwards and dropped below 3,400 USD amid optimism surrounding trade agreements between the US and its key partners. Discover more in our analysis for 24 July 2025. XAUUSD technical analysis XAUUSD quotes are in a downward correction, having fallen below 3,400 USD. Earlier this week, gold reversed from a local daily high at 3,438 USD. Once the correction is complete, the uptrend may resume. Gold entered a downward correction, slipping below 3,400 USD. Read more - Gold Forecast Attention! Forecasts presented in this section only reflect the author’s private opinion and should not be considered as guidance for trading. RoboForex bears no responsibility for trading results based on trading recommendations described in these analytical reviews. Sincerely, The RoboForex Team -
Investors be aware: Copy Trading Investment Scam
⭐ Piranha3 replied to fxtrader99's topic in Announcements
To all newbies, the scam above is a very common type of scam. Unless you are a billionaire, please protect your money against greed - that's the cash they are trying to wave in front of your eyes. Those are illusions made to make you focus on the "potential" when they are actually scheming against you. As the saying goes "if it's too good to be true, it's too good to be true". -
Olga Morales, Astrology For Gann Traders Advanced level
setare replied to poli's topic in Forex Clips & Movies
Hello, can someone please upload this course? Olga Morales – Astrology for Gann Traders Complete Course I really need this part of the course. Astrology for Gann Traders Lunar Harmonics DVD please please please upload new link Thnaks -
ROBOCOT... ROBOCOT_V3X1.zipROBOCOT V3X_GUIA.pdf