Entry and Exit price columns

Entry and exit price columns are now available in Tradervue. Entry price has actually been available for a while, but exit price is brand new.

Here’s how entry/exit prices are determined:

  • For stock, futures, and forex trades, not containing options, the entry price is the price of the first execution, and exit price is the price of the last execution.
  • For pure option trades, the entry price is the price of the first execution, and exit price is the price of the last execution.
  • For trades containing both stock and options (or both futures and futures options), the entry price is the price of the first non-option execution. Similarly, the exit price is the price of the last non-option execution.

The third case above handles the case where you’re trading, for example, a covered call. The entry/exit prices will both reflect the stock price you executed at, rather than the option prices.

Both entry and exit prices are available in the following locations:

Adding timestamps to notes

It’s now possible to quickly add a timestamp to trade or journal notes. To add the current timestamp, click the calendar button on the right side of the editor toolbar:

editor

Even quicker, you can just press Ctrl+T in the editor, and the timestamp will be inserted at the current cursor position.

Timestamps are entered in US eastern time, to match the time zone your execution times and charts are displayed in.

This is super handy for updating notes on a developing trade throughout the day, making notes on a swing trade, or adding notes throughout the day to a journal entry!

VWAP now available on charts

We’ve added Volume Weighted Average Price (VWAP) to the available studies on intraday price charts in Tradervue. A few notes about how this works:

  • The VWAP is calculated intraday, starting from the open, and is only available on intraday charts.
  • For stocks, pre-market activity is not included in the VWAP calculation. This is rarely an issue, as regular-hours volume tends to quickly exceed pre-market levels.
  • It is calculated based on the interval shown on the chart. So for example, if you’re looking at a 1-minute chart, VWAP is calculated based on 1-minute data. If you’re looking at a 5-minute chart, it’s calculated based on 5-minute data.
  • VWAP is only available for stock and futures trades.

If you haven’t used them before, here are details on how to add studies to charts in Tradervue. And if you’re not already familiar with it, here’s a primer on VWAP!

API sample to add industry tags

We’ve written a short sample application in Python that uses the Tradervue API to add industry tags to your trades, based on their symbol. It’s only a sample – you’ll need to add the list of tags you want to use – but it demonstrates how to do it in a straightforward manner.

You could use this same code to add other tags to your trades as well. For example, you could add a “preferred” tag to all of your trades in preferred stocks.

The possibilities using the new API are endless!

Journaling workflows

If you’re keeping a trading journal with Tradervue, and writing specific notes for each trade you make, there are several different workflows you can use to do this easily. Specifically, you can:

  1. If you’re using an auto-importer (such as Journal Lync), you have the best of all worlds; you can simply make notes as you go, and your executions will be loaded in near real-time. Importing can be automated via our API.

  2. You can import your trades at the end of the day (or at whatever frequency makes sense for you), and then make notes on your trades. This is simple and easy, but the downside is by the time you import your trades, you may not remember everything that you would have liked to make notes about.

  3. You can make per-trade notes throughout the day, and then have your imported executions “match up” with those notes when you import at the end of the day.

Let’s dive into a bit more detail about how the third option works.

Suppose you just opened a trade in TWTR a minute ago. You have a bunch of things that are fresh in your mind about why you entered this trade, and you’d like to make some notes about it. Do the following:

  1. In Tradervue, click “New Trade”. Enter TWTR as the symbol, and enter the notes that you want to capture:

image

  1. If there are tags you want to apply to the trade, add them here. If you’re using account tags, add a tag for the account.

  2. If you’re using risk tracking, enter your initial risk.

  3. Save the trade.

Now you have the trade saved, albeit with no executions yet.

Later in the day, perhaps you make an adjustment to the trade, and want to make additional notes. From the Trades View, find the TWTR trade, and click “details” to open it. Now you can enter additional notes, add/remove tags, etc. You can repeat this throughout the day:

image

At the end of the day, import your data from your trading platform as you normally would. What will happen is the executions making up the first trade in TWTR will be attached to the empty trade you created earlier in the day:

image

This is a very useful way to make the best use of your journal throughout the trading day. You can make notes on your trades when your thoughts are fresh in your mind, and not lose any nuance that you might miss if you wait until the end of the day.

Post journal entries from 1Writer on iOS

We’ve recently made some major additions to our API, and there has been quite a bit of interest around them. Today we will demonstrate a 1Writer action, where you can create journal entries and notes from the powerful markdown editor app on iOS.

After you’ve installed 1Writer from the App Store, you can install the Tradervue Journal entry action from the directory. Once installed in 1Writer, you’ll need to add your Tradervue username and password to the script, so it can use your account. Tap the “…” button in the lower left corner of the 1Writer editor, and tap the “i” icon next to the Tradervue Journal entry action:

img_0016

Then in the source code for the action, enter your Tradervue username and password at the top of the script. So change the first four lines to look something like this, but with your own username/password:

// Enter your Tradervue username and password below
username = "joe_user";
password = "seekrit";
//

Then you can close the action and go back to the editor.

Now, when you tap the “…” button in the editor, you’ll see a list of options:

img_0011

If you tap “Open today’s journal entry”, it will open the notes for today’s journal entry in the current note in 1Writer:

img_0013

You can then edit that entry, perhaps adding some additional notes to the end:

img_0014

Then tap the “…” button again, and select “Save today’s journal entry”, and it will be saved to Tradervue as you would expect:

img_0015ps

You can also save the current note in 1Writer as a new Journal note – if you haven’t used them before, see Journal Notes in Tradervue.

Note that this action is primarily intended as an API sample, and is unsupported – but that said, it’s super handy, so feel free to use it!

Multiple tag filters – now with NOT

Multiple tag filters are an incredibly powerful way to filter trades in Tradervue, and today they’re getting even better. You can now exclude tags from your filter using NOT. With this in mind, let’s go through the different ways to filter tags:

AND

You can require multiple tags using an AND filter. For example:

earnings AND momentum

OR

You can require one or more tags using an OR filter:

earnings OR momentum

NOT

You can exclude trades with a certain tag:

NOT earnings

You can also combine NOT and AND, to include only trades that have one tag but not another:

earnings AND NOT momentum

Tradervue API additions

Over the past weeks, we’ve been adding a lot more functionality to the Tradervue API. In addition to the Import API we’ve had for a while now, we’ve added API access for:

  • Trades
  • Journal entries
  • Journal notes
  • Executions
  • Comments

Here are just a few things you could do with the new API:

  • Create new trades programmatically, and add notes to them throughout the trading day
  • Update your daily journal entry from another application
  • Create journal notes from anywhere
  • Retrieve data about your trades, including analytics like MFE/MAE and efficiency, for further analysis in other applications 

The list goes on and on! See the updated documentation for the API for more details.

We’re also not done with the API – so if there is something you’re trying to do, and you need additional API support, let us know!

Auto-import from DAS Trader now available

dasinc2You can now automatically import your trades into Tradervue from DAS Trader!

Up to now, you’ve been able to export trading data from the desktop DAS Trader Pro platform, and import it into Tradervue, but only for the current trading day – so you’d need to make sure you imported every day.

Now, we can connect directly to DAS and retrieve your trading data, with the click of a button. This includes historical data – just give us the date range you’d like to import your trading data for, and click Import, and we’ll do the rest.

To get started, sign into Tradervue, then click here to fill out the request form. Note that we don’t (and will never) ask for your DAS password. After filling out the form, we’ll send you an email within a few business days letting you know it’s been provisioned for you.

Many thanks to the team at DAS for working with us to add this!