The most valuable Twitter feature you aren't using:

Advanced search.

Knowing how to use it will help you find the hidden gems of the Twitter archives and 10x your Twitter experience.

Here's the step-by-step guide:

Most Twitter users know nothing about advanced search.

And the few that do think you have to access it this way: by clicking the three dots in the search bar, then clicking advanced search, then using these fields.

This is painfully inefficient.

Luckily, there is a better way.
You can leverage the power of advanced search right in the search bar using text.

And there are six different things you can create filters for:

• Date
• Keywords
• Number of likes
• Number of replies
• Number of retweets

Let's dive into how to use each.
Before we do that, you might be thinking, what does this do for me?

Twitter is a real-time platform.

But the Twitter archives are full of gems.

Especially from some of the most prominent people on Twitter, you can learn a lot by combing through popular things they've said.
The foundation of advanced search is the "from" query.

Every query will start like this:

from:handlename

An *important* note: do not include the @ before the user's handle.
Want to see someone's tweets during a certain period of time?

Easy. Just use the "until" and "since" query

from:dickiebush since:2021-01-01 until:2021-02-01

An *important* note: dates must be formatted in "YYYY-MM-DD" format with no space between them and the colon.
Want to see someone's tweets with a specific keyword?

Just put it in quotes after your from:handlename

For example: from:dickiebush "Twitter"

And if you like to get fancy, you can combine them with an "OR" to look for multiple words.

from:dickiebush "Twitter" OR "writing"
What if you want to see someone's most popular tweets?

You can do that too.

Filter by number of likes, replies, or retweets using any of the following:

• min_faves:100
• min_replies:100
• min_retweets:100

Example: from:dickiebush min_faves:1000 min_retweets:1000
Advanced search gets fun when you start to combine queries.

For example, what if I wanted to see what @APompliano was saying about Bitcoin during 2018's crash:

from:apompliano "bitcoin" since:2018-01-06 until:2018-02-06 min_faves:2000

The man practices what he preaches! 💎🤲
And that's it!

Twitter is notorious for having hidden gem features like this!

If you enjoyed this thread:

1. Follow me @dickiebush for more like this

2. Quote tweet the top tweet with your biggest takeaway (it helps other people find it too)
And 10 more of the best little-known Twitter tips, check out this thread:

https://t.co/g9F31rZa7W
You can combine each query in as many ways as you'd like.

The TL;DR of what you can filter:

• "keyword"
• min_faves:1000
• min_replies:1000
• min_retweets:1000
• from:handlename
• until:YYYY-MM-DD
• since:YYYY-MM-DD

More from Dickie Bush 🚢

More from All

You May Also Like

Nano Course On Python For Trading
==========================
Module 1

Python makes it very easy to analyze and visualize time series data when you’re a beginner. It's easier when you don't have to install python on your PC (that's why it's a nano course, you'll learn python...

... on the go). You will not be required to install python in your PC but you will be using an amazing python editor, Google Colab Visit
https://t.co/EZt0agsdlV

This course is for anyone out there who is confused, frustrated, and just wants this python/finance thing to work!

In Module 1 of this Nano course, we will learn about :

# Using Google Colab
# Importing libraries
# Making a Random Time Series of Black Field Research Stock (fictional)

# Using Google Colab

Intro link is here on YT: https://t.co/MqMSDBaQri

Create a new Notebook at https://t.co/EZt0agsdlV and name it AnythingOfYourChoice.ipynb

You got your notebook ready and now the game is on!
You can add code in these cells and add as many cells as you want

# Importing Libraries

Imports are pretty standard, with a few exceptions.
For the most part, you can import your libraries by running the import.
Type this in the first cell you see. You need not worry about what each of these does, we will understand it later.