Jump to content

⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

Atomo12345

⭐ V.I.P.
  • Posts

    514
  • Joined

  • Last visited

  • Days Won

    71

Atomo12345 last won the day on May 29

Atomo12345 had the most liked content!

6 Followers

About Atomo12345

  • Birthday 11/29/1963

Recent Profile Visitors

8,557 profile views

Atomo12345's Achievements

  1. TIMESTAT a very old 16 bit program to calculate statistical data. Open the 1994.XLS for try it. If It not run in your computer because it's a 16 bit software, download this program: https://workupload.com/file/7BYBwTRdg3E Extract the zip file. Run as administrator otvdmw.exe. Search the file TIMESTAT.exe and open it. It run very well. https://workupload.com/file/KapjSDLWH55
  2. It not run in new computers because it's a 16 bit software. To solve the problem download this program: https://workupload.com/file/7BYBwTRdg3E Extract the zip file. Run as administrator otvdmw.exe. Search the file parity21.exe and open it. It run very well. With this program you can run any software of 16 bit in your Windows 11 also 64 bit. It is not necessary to install these programs. I remember that I payed Parity Plus 150 bucks 30 years ago to someone in United States.
  3. My first program of tecnichal analisys. Parity Pus 2.1 a very old Windows 16 bit program. Try if it runs on your system. https://workupload.com/file/awGGENrjyPV
  4. Extract the file MS19FORM.DTA. In Metastock open Indicator Builder. Push Organizer. Select Import formula files. Push next. Search MS19FORM.DTA. Import it. The formulas appears in Indicator Builder.
  5. Import my formulas with the Organizer and then them appears in Indicator Builder.
  6. Some explanations. Open Inner Window New. Plot: Prezzo massimo probabile (0.95) Prezzo minimo probabile (0.95) Prezzo massimo previsto Prezzo minimo previsto HCL These bands forecast the prices or the values of tomorrow with the log normal distribution. Please translate the Italian in English and set your favorite colors.
  7. Forecasted values of tomorrow, for Metastock 20. The prices or values forecasted for the day of tomorrow for Metastock 20. Please translate the Italian to English (https://www.deepl.com/en/translator): https://workupload.com/file/FtYHVNyphzp
  8. Sorry kesk you have reason. epajfl00 if you search the address above you find the type of the jump. I don't know RELYZE. I will try it. End of the discussion. Have a good week end.
  9. The patch mov (48) instruction to ret (C3) instruction has be made by shb. I have patched these two instructions substitute the je and jne with jmp, to simply avoid the controls of the program: 00000001400C10F7 | 74 76 | je broker.1400C116F | 00000001400C118F | 0F85 8A000000 | jne broker.1400C121F | I use IDA and x64dbg. But in particular to reverse programs is better and plus pratical x64dbg. With this modifications I think that is not necessary to block the communication in lmhosts. Greetings from Italy.
  10. Ok. The patch works always very well. Thank you. Peace in Iran and Palestine.
  11. Sorry candyman. This is only specific for the version of Amibroker 64 bit. The better system for Elliott Waves are my formulas for Metastock 20. Go here:
  12. I think that the best are these four waves. For example this {Bullish Elliott Waves (Fifth Wave)} for S&P500, forecast the actual objective for the Fifth Wave to 7800-8050 probably to the end of July-August 2026.
  13. Please change the colors of the objective lines. {Elliott Wave ABC Bullish Pattern (Third Wave)} MinA := Input(“Minimum of wave A =”, 0, 1000000, 6316.9); MaxA := Input(“Maximum of wave A =”, 0, 1000000, 6618.3); RetracementB := Input(“Wave B Retracement =”, 0, 1000000, 6534.6); WaveCMinTarget := RetracementB + ((MaxA - MinA) * 0.618); WaveCMedTarget := RetracementB + ((MaxA - MinA)); TargetCTip:=RetracementB+((MaxA-MinA)*1.272); TargetCHigh:=RetracementB+((MaxA-MinA)*1.618); TargetCHigh; TargetCTip; WaveCMedTarget; WaveCMinTarget {Bearish Elliott Wave ABC (Third Wave)} MaxA := Input(“Maximum of wave A =”, 0, 1000000, 7002.3); MinA := Input(“Minimum of wave A =”, 0, 1000000, 6130); RetracementB := Input(“Wave B Retracement =”, 0, 1000000, 6525); WaveCMinTarget := RetracementB - ((MaxA - MinA) * 0.618); WaveCMedTarget := RetracementB - ((MaxA - MinA)); TypicalTargetWaveC := RetracementB - ((MaxA - MinA) * 1.272); MaxTargetWaveC := RetracementB - ((MaxA - MinA) * 1.618); WaveCMinTarget; WaveCMedTarget; TypicalTargetWaveC; MaxTargetWaveC {Bullish Elliott Waves (Fifth Wave)} Min1 := Input(“Wave 1 Low =”, 0, 1000000, 6316.9); Max1 := Input(“Wave 1 High =”, 0, 1000000, 6609.7); Retracement2 := Input(“Wave 2 Retracement=”, 0, 1000000, 6474.9); Max3 := Input(“Wave 3 High=”, 0, 1000000, 7385); Retracement4 := Input(“Wave 4 Retracement=”, 0, 1000000, 7050); FifthWaveMax:=Retracement4+(Max1-Min1)*2.618; FifthWaveMinTarget :=Retracement4+(Max1-Min1)*1.618; FifthWaveTip:= (Max3-Min1)+Retracement2; FifthWaveHigh:=(Max3-Min1)*0.618+Max3; FifthWaveMax; FifthWaveHigh; FifthWaveTip; FifthWaveMinTarget {Bearish Elliott Waves (Fifth Wave)} Max1 := Input(“Wave 1 High =”, 0, 1000000, 7002.3); Low1 := Input(“Wave 1 Low =”, 0, 1000000, 6775.5); Retracement2 := Input(“Wave 2 Retracement=”, 0, 1000000, 6952.5); Minimum3 := Input(“Wave 3 Minimum=”, 0, 1000000, 6316.9); Retracement4 := Input(“Wave 4 Retracement=”, 0, 1000000, 6618.1); FifthWaveMax := Retracement4-(Max1-Low1)*1.618; FifthWaveTipTarget := Retracement2 - (Max1 - Minimum3); MaxFifthWaveTarget := Retracement2 - (Max1 - Minimum3) * 1.272; FifthWaveTipTarget; MaxFifthWaveTarget; FifthWaveMax
  14. Sorry tradingsol for the misunderstanding. Sure all the file AFL for the version of 32 bit of Amibroker will working very well in the 64 bit version of Amibroker. But if you have a .dll for the 32 bit it don't works in the 64 bit of Amibroker.
  15. All the cycles knwes for Amibroker 7.00.1 64 bit. Put the 2 files in the include folder. https://e.pcloud.link/publink/show?code=XZIa4iZr1tVcwIx3c7t3IwDpuWrkLVRCXIk

⤴️-Paid Ad- Check advertising disclaimer here. Add your banner here.🔥

×
×
  • Create New...