Jump to content

Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.

  • Welcome Guests

    Welcome. You are currently viewing the forum as a guest which does not give you access to all the great features at Traders Laboratory such as interacting with members, access to all forums, downloading attachments, and eligibility to win free giveaways. Registration is fast, simple and absolutely free. Create a FREE Traders Laboratory account here.

agon

Volume Splitter

Recommended Posts

here is the ELD using Blowfish Code

there are two indicators in the file; one plots bars, the second, candles. (it doesn't have the startup improvements, but these only matter if you're interested in absolutes)

 

Vol_Split_OHLC

Vol_Split_Candles

 

just import into TS and look for the above names

I personally like to plot the candles under the price candles and watch for divergences....

 

 

For those that want a trendline on it, calculate the average price of the candle (DeltaH+DeltaL+DeltaCu)/3, average it and add a 5th plot

 

For MACD (which is what i think the EOT indicator is), calculate 2 trendlines, take the difference between them, and average a little. (standard MACD)

 

 

phall

VOLSPLITBLOWFISH.ELD

Share this post


Link to post
Share on other sites

But guys/gals,

If this "intrabarpersist" business is bogus, doesn't that mean that the Blowfish indicator is unreliable? It's got that reserved word 9 times in its code.

I've been noticing some strange differences in my charts when I put the Blowfish #4 indicator on different timeframes, and wondered what was going on. If this caveat that thrunner and the folks on the TS forum are talking about is true, then we may be barking up the wrong tree.

Tasuki

Share this post


Link to post
Share on other sites

Tasuki. I have noticed odd discrepancies on different time frame charts. Might be a bug might be implementation. Did they distribute .DLL's when you signed up for the trial? Chances are that suffers the same too.

 

Personally I don't think its that big a deal because a trade@bid or ask dosen't definitively tell you a thing about the participants whether they are opening or closing, whether they are buyers or sellers whether they are informed or not. One of the dis-services done by the vendors is they imply that they are.

 

Still I have noticed discrepancies that may be due to how data is sent. I might have a go in Ninjatrader but probably not for a while.

Share this post


Link to post
Share on other sites
If this "intrabarpersist" business is bogus, doesn't that mean that the Blowfish indicator is unreliable? It's got that reserved word 9 times in its code.

 

I can assure you that the 'intrabarpersist' keyword works just as advertised. It's the combination of that with grabbing the order book info that can lead to what are called 'race conditions' in concurrent programming circles. It's been discussed at length in ninjatrader forums as well, and something I got a lot of practice dealing with when I used to have a day job. So, thankfully, our indicator never had those issues.

 

Certainly worth looking into if you want to improve your clone attempts.

Share this post


Link to post
Share on other sites
I can assure you that the 'intrabarpersist' keyword works just as advertised. It's the combination of that with grabbing the order book info that can lead to what are called 'race conditions' in concurrent programming circles. It's been discussed at length in ninjatrader forums as well, and something I got a lot of practice dealing with when I used to have a day job. So, thankfully, our indicator never had those issues.

 

Certainly worth looking into if you want to improve your clone attempts.

 

Thanks for your input :) As I have said on several occasions I have no interest whatsoever in cloning your work, I'm just here to demonstrate principles that it is based upon so people can do the work for themselves.

 

IF and when NT 7.0 has proper storage of all these events I might have a serious go at some studies.

 

One advantage NT has is that it generates events with proper time stamps for trades and order book changes. TS order book best bid and best ask is something that you 'peak' at from a trade event unless I am mistaken.

 

It's good to know that intrabar persist works as advertised. I had heard that there is a pretty serious issue with the granularity of time stamping ticks? It's academic to me as a Multicharts user. I do have a 'feeling in my gut' that there might be something a bit wierd with their implementation.

 

Incidentally for serious research on this Neoticker might fit the bill. I believe it can be tricked into saving full order book information and it's tick precise technology will play this back into a chart tick by tick correctly synchronised with the trade data. If NT 7.0 doesn't deliver maybe time to dust off Neo. It's a superb product in many many ways but a bitch to learn to program. I guess I'd need to re-learn being as its been so long.

 

Anyway thanks again Richard.

Share this post


Link to post
Share on other sites

One advantage NT has is that it generates events with proper time stamps for trades and order book changes.

 

Ninja Trader 6 returns time stamps leave out the milliseconds. It's current implementation is accurate down to seconds even though they return it as a DateTime object which supports milliseconds, so it would be possible for them to add milliseconds in a future version without breaking anything.

Share this post


Link to post
Share on other sites
Ninja Trader 6 returns time stamps leave out the milliseconds. It's current implementation is accurate down to seconds even though they return it as a DateTime object which supports milliseconds, so it would be possible for them to add milliseconds in a future version without breaking anything.

 

Yes, and you can grab the time with more orders of accuracy than current technology provides in your event handler (using "DateTime.Now.Ticks")

Share this post


Link to post
Share on other sites

Just this morning I looked at Blowfish #4 on two one minute charts of the ES on two different workspaces--the indicator patterns looked very different. So, if "intrabarpersist" works as advertised, then it must be advertised to give random results!

 

For completeness sake, those two charts have been on my workspaces several days, so they started up at exactly the same time this morning, when I turned on my computer and logged into Tradestation. So the differences between them were not due to different start times. I understand how that could be a potential problem, but was not the case here.

Share this post


Link to post
Share on other sites
Yes, and you can grab the time with more orders of accuracy than current technology provides in your event handler (using "DateTime.Now.Ticks")

 

Right, but this would not work for historical data. Btw, you would not access access the Ticks property to get milliseconds, use DateTime.Now.Millisecond instead. DateTime.Now is of type DateTime which contains all information.

Share this post


Link to post
Share on other sites
Thanks for your input :) As I have said on several occasions I have no interest whatsoever in cloning your work, I'm just here to demonstrate principles that it is based upon so people can do the work for themselves.

 

I knew you'd say that! Don't worry, I wouldn't lump you in with the cloners. FWIW I think you are right to say that, after a point, it's all window dressing. A skilled trader can smooth/normalize/recombine/predict/colorize the data any way that suits the trading concept they are trying to bring out. Attempting to match our one implementation bar-for-bar doesn't seem like a good use of time, to me.

 

(although obviously I think our implementation is a rather nice one)

 

 

It's good to know that intrabar persist works as advertised. I had heard that there is a pretty serious issue with the granularity of time stamping ticks?

 

Yeah, all of the TS timestamping stuff is ridiculous--even forgiving the ticks, last time I used TS you couldn't even tell when a bar was. Long live multicharts and the _s functions, which are at least a little better.

 

 

Incidentally for serious research on this Neoticker might fit the bill.

 

I tried to find example code for neoticker once or twice, to get a sense of what it looked like, but never came across much via google. Didn't run across an easy-to-spot programming guide on their website. I thought that was strange. So I have yet to try it.

Share this post


Link to post
Share on other sites

Here's a thought:

 

 

TradeStation and MultiCharts are Event-Driven programs. (so as many others on the market)

 

Basically an event-driven program does not do anything...

it just sitting there, not doing any calculations or re-calculations,

not doing any updates...

 

... UNTIL a tick comes in. *

 

when a tick comes in (i.e. a trade), the program will kick into action.

It will update all the indicators,

it will re-draw the trendlines,

it will re-plot the price bars, etc...

 

 

Bid and Ask are real time events, but they are disconnected with Trade (i.e. tick).

 

in another word, many changes in bid and ask can happened within a period of time,

however if a trade has not happened,

the changes in bid and ask will not be visible to the indicator.

 

 

 

 

*(or when a barinterval has passed)

Share this post


Link to post
Share on other sites
So, if "intrabarpersist" works as advertised, then it must be advertised to give random results!

 

As Richard explained, this bug is due to multi-threading. You need to take care of that yourself by synchronizing the access to the data.

Share this post


Link to post
Share on other sites
Just this morning I looked at Blowfish #4 on two one minute charts of the ES on two different workspaces--the indicator patterns looked very different. So, if "intrabarpersist" works as advertised, then it must be advertised to give random results!

 

Again, I would suggest you not blame intrabarpersist. It persists the values from tick to tick, just like it's supposed to. I have tons of code that would not work at all if it weren't for intrabarpersist working properly.

 

But, when you are combining independent streams of data (ticks vs. order book), it takes care to avoid race conditions. It's like a gun that you can easily point at your foot. Don't blame the gun if you're the one pulling the trigger, you know?

 

I remember the first prototype ninja splitter I made had this issue... it would look ok, then all of a sudden start going in the exact wrong direction. The sad thing was that the errant code was in one of ninja's built-in indicators, so I had to re-write that part from scratch. It's an easy trap to fall into if you aren't used to concurrency issues.

Share this post


Link to post
Share on other sites
Again, I would suggest you not blame intrabarpersist.

 

Richard, thanks for your explanations. Whether it's the "intrabarpersist" or something else, the bottom line for the trader is that the indicator gives different results on different charts which are set to the same parameters. As a trader, this is untenable because it is unreliable. If I'm basing my trading, even in part, on signals that are unreliable, what's going to happen to my bottom line?

 

The question is, what could one do to remedy this problem? As an EasyLanguage newbie, I wouldn't have a clue, and from what little I can gather from the discussion of Tradestation data vs. Ninjatrader vs. Neoticker, the problem is unfixable on Tradestation. Of course, I could be wrong.

Share this post


Link to post
Share on other sites
If I'm basing my trading, even in part, on signals that are unreliable, what's going to happen to my bottom line?

 

I didn't suggest you should use an indicator with race condition issues... I just said it's not right to blame the intrabarpersist reserved word.

 

 

The question is, what could one do to remedy this problem?

 

With work you can make TS produce deterministic output. In fact, I hear there's a commercial splitter out there that is consistent on tradestation (can't remember the vendor's name, though). :)

 

What I have learned from porting indicators across TS, MC, Ninja, eSignal, ensign, etc is that they all have quirks and issues that need to be worked around. Probably the most common question we get in the room is "why does my TS screen look slightly different than your ninja screen?" Of course the biggest reason is inconsistencies across the data feeds. But the secondary answer is that the computations have to be adjusted slightly, per platform, to account for their oddities. I would say the #1 programmatic cause of platform differences in our indicator output has to do with event timing, which the platforms seem to differ about quite a bit.

Share this post


Link to post
Share on other sites

 

 

With work you can make TS produce deterministic output.

 

But the secondary answer is that the computations have to be adjusted slightly, per platform, to account for their oddities. I would say the #1 programmatic cause of platform differences in our indicator output has to do with event timing, which the platforms seem to differ about quite a bit.

 

Richard, thanks for the insights. I don't suppose your previous "day job" would have included programming for Tradestation? You obviously understand its idiosyncracies intimately.

 

Tasuki

Share this post


Link to post
Share on other sites
I don't suppose your previous "day job" would have included programming for Tradestation?

 

No, I used to design huge distributed software systems for government contractors. My last gig was to help bring a failing project (way over time and over budget) back to life. It sucked, but it paid so well that I was able to leave that behind forever.

 

I've been programming computers in one form or another since I was 6, so it's kinda in my blood now I guess.

Share this post


Link to post
Share on other sites
here is the ELD using Blowfish Code

there are two indicators in the file; one plots bars, the second, candles. (it doesn't have the startup improvements, but these only matter if you're interested in absolutes)

 

Vol_Split_OHLC

Vol_Split_Candles

 

just import into TS and look for the above names

I personally like to plot the candles under the price candles and watch for divergences....

 

 

For those that want a trendline on it, calculate the average price of the candle (DeltaH+DeltaL+DeltaCu)/3, average it and add a 5th plot

 

For MACD (which is what i think the EOT indicator is), calculate 2 trendlines, take the difference between them, and average a little. (standard MACD)

 

 

phall

 

Thank you very much for the ELD for the Blowfish #4. It is much appreciated. If I want the candles (or the bars) to measure orders from 1 contract to 50, wouldn't I simply put in a 1 at the small block filter and a 50 at the large block filter? On the same chart if I wanted to compare those trades to trades above 200 contracts, would it be small block filter at 200 and and large block filter at 9999? In fact, my minute chart looks more like a ladder going up and down.

Can this indicator be used on a tick chart as well as a minutes chart? My tick chart does not function the same, thats why I ask? Would this have anything to do with reseting the Delta at each bar to over zero?

 

Thank you for any help:)

Share this post


Link to post
Share on other sites
Thank you very much for the ELD for the Blowfish #4. It is much appreciated. If I want the candles (or the bars) to measure orders from 1 contract to 50, wouldn't I simply put in a 1 at the small block filter and a 50 at the large block filter? On the same chart if I wanted to compare those trades to trades above 200 contracts, would it be small block filter at 200 and and large block filter at 9999? In fact, my minute chart looks more like a ladder going up and down.

Can this indicator be used on a tick chart as well as a minutes chart? My tick chart does not function the same, thats why I ask? Would this have anything to do with reseting the Delta at each bar to over zero?

 

 

Looks like you've got it right regarding the contract sizes. The indicator will plot on a tick chart and a volume chart as well, but not on a momentum or range bar chart. Not sure why. See for yourself. I should clarify that it will plot, meaning you'll see something, but it never seems to advance properly on mom and range charts.

 

The real question is whether it is giving correct or incorrect information. If you put this indicator on multiple types of charts, you'll get widely divergent information. One chart will suggest that the big traders are buying, while another chart will show that they're selling. So, basically it's untrustworthy as it is, and possibly will do more harm than good to your trading.

 

Caveat emptor.

Share this post


Link to post
Share on other sites

was thinking about the multi-threading, time sync problem

 

one way around this would be to compare the close relative to the last close and forget about the bid/ask. the add/subtract would be based on the close changes on that block of shares

 

it would basically be an OBV calculation and will be synced

 

since EOT doesn't suffer from sync issues, they might have something similar; maybe a more sophisticated methodology than OBV to measure the price force of the block of interest using closes.

 

just some thoughts....

 

phall

 

 

added ELD Code with changes to use closes instead of bid/ask

Indicator name: vol_split_OHLC_C

BLOWFISHUSINGCLOSES.ELD

Edited by phall
add code

Share this post


Link to post
Share on other sites
The indicator will plot on a tick chart and a volume chart as well, but not on a momentum or range bar chart.

 

Just as a point of interest, when TS came out with their latest bar types, a few of our indicators didn't work on them. We were able to fix it, though, and I have reports of people using our splitter successfully on momentum bars at least. I don't have TS anymore so I haven't seen it myself, but our clients are pretty **** about comparing their screens to our moderator's so I think they are happy with the new TS bar types now.

Share this post


Link to post
Share on other sites
was thinking about the multi-threading, time sync problem

 

one way around this would be to compare the close relative to the last close and forget about the bid/ask. the add/subtract would be based on the close changes on that block of shares

 

it would basically be an OBV calculation and will be synced

 

since EOT doesn't suffer from sync issues, they might have something similar; maybe a more sophisticated methodology than OBV to measure the price force of the block of interest using closes.

 

just some thoughts....

 

phall

 

 

added ELD Code with changes to use closes instead of bid/ask

Indicator name: vol_split_OHLC_C

 

FWIW, here's a comparison of phall's ELD (which I've renamed "271" because his post is permalink #271 in this thread) and the Blowfish #4 (from permalink #162 of this thread).

 

The first two charts are 1 minute charts which include volume.

The second pair of charts are 233 tick.

All four are of the @ES.

In each case, the upper indicator is set to large contracts (100-9999) and the lower indicator is set to small contracts (1-5).

 

Clear, but not dramatic, differences can be seen, but I'm not sure what this tells us. What I should have done was to create multiple instances of phall's new indicator on identical charts and see if they all track the same or not. That would be a valuable test for consistency.

5aa70ee554368_2711min.thumb.png.4c3227d6a1fe78a6ee5260965f07aed8.png

5aa70ee55d4d1_blow41min.thumb.png.5d3b4a7bc55d7ffd9e8a6f4af9066e56.png

5aa70ee565aed_271233tick.thumb.png.274fa167e7448e379faa9c56e36b76ba.png

5aa70ee56e009_blow4233tick.thumb.png.32ce3633b41909309fcce4109af07dd4.png

Share this post


Link to post
Share on other sites

Tasuki, thank you for the data.

 

on the consistency front, my trading partner 2 states away and I ran the "271" (as you named it) today on the 3min @ES and got identical results.

This was not the case with the bid/ask version.

 

What i noticed with the Blowfish 4 running next to the 271 is that when the market moves fast it gets tricked, probably because the Bid Ask is moving so rapidly with respect to the closes.

 

my first day with the 271 showed that the 100+ group and the price tracked very well. tradeable, transient divergences appeared quite often intra-candle.

 

as i mentioned before, to turn this into something predictive, the close to close analysis could be made more sophisticated and a MACD or similar type of oscillator (operating on the OHLC of the vol split) could show the leading divergences, similar to the EOT.

 

as Blowfish and RT mentioned, this is the backend that everyone should probably develop to their own needs...

 

phall

Share this post


Link to post
Share on other sites

I think the issue is with InsideAsk and InsideBid. Essentially you are 'peaking' at those values (which fluctuate) at a moment in time. They are not synchronised with last in any way shape or form.

 

You could mitigate any issues by storing those values as the first thing the study does. They will never be truly eliminated by using the InsideAsk InsideBid mechanism.

 

You might be able to eliminate the issue completely by having last bid and ask as data1 data2 and data3 in the same chart.

dax_bal1.thumb.png.f51dc396a79cf60e5b1c5c360c4f3f35.png

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


  • Topics

  • Posts

    • there is no avoiding loses to be honest, its just how the market is. you win some and hopefully more, but u do lose some. 
    • Date: 11th July 2025.   Demand For Gold Rises As Trump Announces Tariffs!   Gold prices rose significantly throughout the week as investors took advantage of the 2.50% lower entry level. Investors also return to the safe-haven asset as the US trade policy continues to escalate. As a result, investors are taking a more dovish tone. The ‘risk-off’ appetite is also something which can be seen within the stock market. The NASDAQ on Thursday took a 0.90% dive within only 30 minutes.   Trade Tensions Escalate President Trump has been teasing with new tariffs throughout the week. However, the tariffs were confirmed on Thursday. A 35% tariff on Canadian imports starting August 1st, along with 50% tariffs on copper and goods from Brazil. Some experts are advising that Brazil has been specifically targeted due to its association with the BRICS.   However, the President has not directly associated the tariffs with BRICS yet. According to President Trump, Brazil is targeting US technology companies and carrying out a ‘witch hunt’against former Brazilian President Jair Bolsonaro, a close ally who is currently facing prosecution for allegedly attempting to overturn the 2022 Brazilian election.   Although Brazil is one of the largest and fastest-growing economies in the Americas, it is not the main concern for investors. Investors are more concerned about Tariffs on Canada. The White House said it will impose a 35% tariff on Canadian imports, effective August 1st, raised from the earlier 25% rate. This covers most goods, with exceptions under USMCA and exemptions for Canadian companies producing within the US.   It is also vital for investors to note that Canada is among the US;’s top 3 trading partners. The increase was justified by Trump citing issues like the trade deficit, Canada’s handling of fentanyl trafficking, and perceived unfair trade practices.   The President is also threatening new measures against the EU. These moves caused US and European stock futures to fall nearly 1%, while the Dollar rose and commodity prices saw small gains. However, the main benefactor was Silver and Gold, which are the two best-performing metals of the day.   How Will The Fed Impact Gold? The FOMC indicated that the number of members warming up to the idea of interest rate cuts is increasing. If the Fed takes a dovish tone, the price of Gold may further rise. In the meantime, the President pushing for a 3% rate cut sparked talk of a more dovish Fed nominee next year and raised worries about future inflation.   Meanwhile, jobless claims dropped for the fourth straight week, coming in better than expected and supporting the view that the labour market remains strong after last week’s solid payroll report. Markets still expect two rate cuts this year, but rate futures show most investors see no change at the next Fed meeting. Gold is expected to finish the week mostly flat.       Gold 15-Minute Chart     If the price of Gold increases above $3,337.50, buy signals are likely to materialise again. However, the price is currently retracing, meaning traders are likely to wait for regained momentum before entering further buy trades. According to HSBC, they expect an average price of $3,215 in 2025 (up from $3,015) and $3,125 in 2026, with projections showing a volatile range between $3,100 and $3,600   Key Takeaway Points: Gold Rises on Safe-Haven Demand. Gold gained as investors reacted to rising trade tensions and market volatility. Canada Tariffs Spark Concern. A 35% tariff on Canadian imports drew attention due to Canada’s key trade role. Fed Dovish Shift Supports Gold. Growing expectations of rate cuts and Trump’s push for a 3% cut boosted the gold outlook. Gold Eyes Breakout Above $3,337.5. Price is consolidating; a move above $3,337.50 could trigger new buy signals. 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.
    • Back in the early 2000s, Netflix mailed DVDs to subscribers.   It wasn’t sexy—but it was smart. No late fees. No driving to Blockbuster.   People subscribed because they were lazy. Investors bought the stock because they realized everyone else is lazy too.   Those who saw the future in that red envelope? They could’ve caught a 10,000%+ move.   Another story…   Back in the mid-2000s, Amazon launched Prime.   It wasn’t flashy—but it was fast.   Free two-day shipping. No minimums. No hassle.   People subscribed because they were impatient. Investors bought the stock because they realized everyone hates waiting.   Those who saw the future in that speedy little yellow button? They could’ve caught another 10,000%+ move.   Finally…   Back in 2011, Bitcoin was trading under $10.   It wasn’t regulated—but it worked.   No bank. No middleman. Just wallet to wallet.   People used it to send money. Investors bought it because they saw the potential.   Those who saw something glimmering in that strange orange coin? They could’ve caught a 100,000%+ move.   The people who made those calls weren’t fortune tellers. They just noticed something simple before others did.   A better way. A quiet shift. A small edge. An asymmetric bet.   The red envelope fixed late fees. The yellow button fixed waiting. The orange coin gave billions a choice.   Of course, these types of gains are rare. And they happen only once in a blue moon. That’s exactly why it’s important to notice when the conditions start to look familiar.   Not after the move. Not once it's on CNBC. But in the quiet build-up— before the surface breaks.   Enter the Blue Button Please read more here: https://altucherconfidential.com/posts/netflix-amazon-bitcoin-blue  Profits from free accurate cryptos signals: https://www.predictmag.com/ 
    • What These Attacks Look Like There are several ways you could get hacked. And the threats compound by the day.   Here’s a quick rundown:   Phishing: Fake emails from your “bank.” Click the link, give your password—game over.   Ransomware: Malware that locks your files and demands crypto. Pay up, or it’s gone.   DDoS: Overwhelm a website with traffic until it crashes. Like 10,000 bots blocking the door. Often used by nations.   Man-in-the-Middle: Hackers intercept your messages on public WiFi and read or change them.   Social Engineering: Hackers pose as IT or drop infected USB drives labeled “Payroll.”   You don’t need to be “important” to be a target.   You just need to be online.   What You Can Do (Without Buying a Bunker) You don’t have to be tech-savvy.   You just need to stop being low-hanging fruit.   Here’s how:   Use a YubiKey (physical passkey device) or Authenticator app – Ditch text message 2FA. SIM swaps are real. Hackers often have people on the inside at telecom companies.   Use a password manager (with Yubikey) – One unique password per account. Stop using your dog’s name.   Update your devices – Those annoying updates patch real security holes. Use them.   Back up your files – If ransomware hits, you don’t want your important documents held hostage.   Avoid public WiFi for sensitive stuff – Or use a VPN.   Think before you click – Emails that feel “urgent” are often fake. Go to the websites manually for confirmation.   Consider Starlink in case the internet goes down – I think it’s time for me to make the leap. Don’t Panic. Prepare. (Then Invest.)   I spent an hour in that basement bar reading about cyberattacks—and watching real-world systems fall apart like dominos.   The internet going down used to be an inconvenience. Now, it’s a warning.   Cyberwar isn’t coming. It’s here.   And the next time your internet goes out, it might not just be your router.   Don’t panic. Prepare.   And maybe keep a backup plan in your back pocket. Like a local basement bar with good bourbon—and working WiFi.   As usual, we’re on the lookout for more opportunities in cybersecurity. Stay tuned.   Author: Chris Campbell (AltucherConfidential) Profits from free accurate cryptos signals: https://www.predictmag.com/   
    • DUMBSHELL:  re the automation of corruption ---  200,000 "Science Papers" in academic journal database PubMed may have been AI-generated with errors, hallucinations and false sourcing 
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.