#ontick
finally, all my logic can live in onTick, i was born for this
September 25, 2026 at 4:16 AM
The effect where the character snap rotates to mimic old FPS sprites, I'm doing in shader. It's a form of interval rounding based on camera vs mesh direction.

Originally, I made a similar effect as a OnTick bp, but shader is just a cleaner way of handling it and allows for it to happen on statics.
December 1, 2024 at 9:01 AM
March 20, 2025 at 10:55 AM
That is one reason why I have a timeline manager with custom time lines (synced to either game time or realtime). The timeline manager allows to add one time callbacks, spans and loops. My OnTick nodes use the loops option to trigger only in duration intervalls than can be set in the node
December 1, 2025 at 9:46 PM
アリスとすずに振られたことから時間指定のEAを作り始め、動作確認もしてそろそろ公開しようかなと思ったところで、秒まで入れた方がいいのかと考え中…

でもOnTick関数はTickの動きで実行されるので、設定した時間にTickの動きが無かったら実行されないままになってしまうかもという疑問
August 22, 2024 at 4:10 AM
時間指定EAの、時間になったら実行する部分をOnTick関数からOnTimer関数に変更したので、tickが動いていないときでも指定時間になれば実行されるようになったけど、その代わりバックテストが出来なくなった。

ということは、サマータイムの自動判別機能も必要ないから、その部分を削除し軽くして、代わりに1度で10ヶ所のエントリーを設定できるようにするかな……
August 26, 2024 at 4:13 AM
We lost another weird and sometimes surreal corner of the world yesterday, though one that went less remarked upon. RIP the Paul Danan Instagram account.
www.instagram.com/paul_danan_o...
January 17, 2025 at 1:44 PM
Follow Ideas da OnTick Atinge Quase 700 Clientes em 3 Meses: Automação Revoluciona Execução de Investimentos

Confira o conteúdo completo 👇

https://eruptionglobal.com/follow-ideas-da-ontick-atinge-quase-700-clientes-em-3-meses-automacao-revoluciona-execucao-de-investimentos/
Follow Ideas Da OnTick Atinge Quase 700 Clientes Em 3 Meses: Automação Revoluciona Execução De Investimentos - @EruptionGlobal
Em um mercado financeiro cada vez mais dinâmico, a agilidade na execução de estratégias de investimento pode ser o diferencial entre o sucesso e a
eruptionglobal.com
August 5, 2026 at 10:08 AM
Robôs batem 5 mil pontos no mini-índice em sessão de novo topo histórico da Bolsa
https://www.infomoney.com.br/mercados/portfolio-de-robos-bate-5-mil-pontos-renova-topo-historico-diz-ceo-da-ontick/?utm_source=flipboard&utm_medium=activitypub

Posted into Economia & Negócios […]
Original post on flipboard.com
flipboard.com
January 21, 2026 at 11:19 PM
New Candle or Bar formation. – EA MetaTrader 5

This Bot detects the open of a new candle on any set timeframe, thereby making it easier to run a one-time code, place trades and call other functions. The code is written in the OnTick() function. the PERIOD_CURRENT is the timeframe at which you want…
New Candle or Bar formation. – EA MetaTrader 5
This Bot detects the open of a new candle on any set timeframe, thereby making it easier to run a one-time code, place trades and call other functions. The code is written in the OnTick() function. the PERIOD_CURRENT is the timeframe at which you want to detect a new candle formation, you can change it to your preferred timeframe. New Candle or Bar formation. - expert for MetaTrader 5
mql.robotfx.org
April 4, 2025 at 12:10 AM
Detecting the start of a new bar or candle – EA MetaTrader 5

For an Expert Advisor (EA)when a new quote ("tick") is received by MetaTraderthe standard OnTick() event handling function is called by the terminal. However, there is no standard event handling function for when a new bar (candle)…
Detecting the start of a new bar or candle – EA MetaTrader 5
For an Expert Advisor (EA)when a new quote ("tick") is received by MetaTraderthe standard OnTick() event handling function is called by the terminal. However, there is no standard event handling function for when a new bar (candle) starts. To detect this, you need to monitor the opening time of the most recent bar. When it changes, it signifies the start of a new bar, and you can react to the situation and handle the event.
mql.robotfx.org
April 3, 2025 at 1:00 PM
@froos getTime difference for me in 2 tabs: (log output is in `createClock::onTick)
March 28, 2025 at 9:59 PM
MT4のバックテストって生成したティックを全部処理するんだろうけど、実際の取引はリアルタイムでせいぜい1秒に1~2回しか OnTick() 呼び出しをもらえないから、高値も安値もだいぶミスるよな。
短期取引のEAにはだいぶ影響大きそうな気がする。
October 9, 2024 at 3:51 PM
Já os robôs da OnTick, utilizados por analistas como Felipe Perigolo e Leandro de Checchi, também superaram o benchmark com estratégias como Tcon (+4,8%) e Nimbus (+2,7%).
January 24, 2025 at 10:13 PM
function onTick()とかで引数としてself.matrixが降りてくるとかでもないのね。
August 2, 2025 at 7:45 AM