This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //+------------------------------------------------------------------+ | |
| //| Enhanced_EMA_EA_v3.0_Profitable.mq5 | | |
| //| Improved EMA Strategy with 2:1 RRR & 5% Risk | | |
| //+------------------------------------------------------------------+ | |
| #property strict | |
| #property version "3.00" | |
| //--- Risk percentage enumeration | |
| enum ENUM_RISK_PERCENT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //+------------------------------------------------------------------+ | |
| //| Enhanced_EMA_EA_v3.0_Profitable.mq5 | | |
| //| Improved EMA Strategy with 2:1 RRR & 5% Risk | | |
| //+------------------------------------------------------------------+ | |
| #property strict | |
| #property version "3.00" | |
| #property copyright "Enhanced by Elameen - Profitable EMA Strategy" | |
| //--- Input parameters | |
| input group "=== RISK MANAGEMENT (CRITICAL) ===" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import random | |
| import time | |
| def display_welcome(): | |
| print("\n" + "=" * 50) | |
| print("WELCOME TO THE QUIRKY MADLIB GENERATOR!".center(50)) | |
| print("=" * 50) | |
| print("\nLet's create a hilarious story together!") | |
| print("Just answer a few quick questions and I'll generate something absurd!") | |
| print("-" * 50) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| :: BatchGotAdmin | |
| :------------------------------------- | |
| REM --> Check for permissions | |
| >nul 2>&1 "%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system" | |
| REM --> If error flag set, we do not have admin. | |
| if '%errorlevel%' NEQ '0' ( | |
| echo Requesting administrative privileges... | |
| goto UACPrompt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| title Activate Microsoft Office 2019 ! | |
| cls | |
| echo ============================================================================ | |
| echo #Project: Activating Microsoft software products | |
| echo ============================================================================ | |
| echo. | |
| echo #Supported products: | |
| echo - Microsoft Office Standard 2019 | |
| echo - Microsoft Office Professional Plus 2019 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "bytes" | |
| "crypto/tls" | |
| "fmt" | |
| "log" |
NewerOlder