NTFY Buddy
89 USD
Publicado:
24 maio 2026
Versão atual:
2.11
Não encontrou o robô certo? Encomende um para você
no serviço Freelance.
Ir para o Freelance
no serviço Freelance.
Como comprar um robô de negociação ou indicador?
Execute seu EA na
hospedagem virtual
hospedagem virtual
Teste indicadores/robôs de negociação antes de comprá-los
Quer ganhar dinheiro no Mercado?
Como apresentar um produto para o consumidor final?
Você está perdendo oportunidades de negociação:
- Aplicativos de negociação gratuitos
- 8 000+ sinais para cópia
- Notícias econômicas para análise dos mercados financeiros
Registro
Login
Você concorda com a política do site e com os termos de uso
Se você não tem uma conta, por favor registre-se

🛠 How to setup a Private NTFY Server on Windows (In 5 Minutes)
Do not want to use the public ntfy.sh cloud? You can easily host your own secure, private notification infrastructure.
Requirements: A Windows VPS or a Home PC with a Static (White) IP address.
Step 1: Download & Extract
Download the latest Windows binary ( ntfy_X.X.X_windows_x86_64.zip ) from the official GitHub releases: [github.com/binwiederhier/ntfy/releases](https://github.com/binwiederhier/ntfy/releases)
Extract the ntfy.exe file into a new folder on your C: drive, for example: C:\ntfy\
Step 2: Create the Configuration File Create a text file named server.yml in your C:\ntfy\ folder and paste the following configuration. Replace YOUR_IP with your actual VPS/PC Static IP.
# C:\ntfy\server.yml base-url: "http://YOUR_IP:39090" listen-http: ":39090" auth-file: "C:\\ntfy\\user.db" auth-default-access: "deny-all"
Step 3: Create an Admin User and Token Open the Windows Command Prompt ( cmd.exe ) as Administrator and run the following commands to secure your server:
Navigate to your folder: cd C:\ntfy\
Create an admin user (it will ask you to create a password): ntfy user add --role admin admin
Give this user read/write access to all topics: ntfy access admin * rw
Generate a secret access token for your MT5 EA: ntfy token add admin (Copy the generated tk_... token and paste it into the MT5 EA input settings!)
Step 4: Run as a Background Service (NSSM) To ensure your server runs automatically even if you reboot the VPS, install it as a Windows Service using the free NSSM utility.
Download NSSM from nssm.cc and put nssm.exe in C:\ntfy\ .
In the Administrator Command Prompt, run: nssm install ntfy_server
A window will pop up. Configure it as follows:
Path: C:\ntfy\ntfy.exe
Arguments: serve -c C:\ntfy\server.yml
Click "Install Service", then start it: nssm start ntfy_server
Step 5: Open Firewall Ports Ensure that TCP port 39090 is open in your Windows Firewall and your VPS provider's network panel.
Done! Your private push-notification infrastructure is live. Open the NTFY app on your smartphone, add a subscription, and use your http://YOUR_IP:39090/topic_name URL. Log in using the admin user/password you created in Step 3.