You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

268 lines
3.2 KiB

3 years ago
---
Alias: ["Investment Task", "Investment Task master"]
Tag: ["💲", "💰", "Equity", "🪙", "VC"]
3 years ago
Date: 2021-08-17
DocType: "Confidential"
ChildrenType:
- Task
Hierarchy: "Root"
TimeStamp:
3 years ago
location:
CollapseMetaTable: true
3 years ago
---
3 years ago
Parent:: [[@Finances]], [[@Investment master|Investments]]
3 years ago
---
^Top
 
```button
name Create Task
type append template
action NewFile
id CreateNote
```
^button-InvNewTask
```button
name Save
type command
action Save current file
id Save
```
^button-InvMSave
 
# Investment Tasks
 
```ad-abstract
title: Summary
collapse: open
This space centralises all tasks and to-dos for current and future investments.
```
 
```toc
style: number
```
 
---
 
### Task list
[[#^Top|TOP]]
 
```dataviewjs
const {taskFunc} = customJS
taskFunc.getAllTasks({app, dv, luxon, that:this, theme: "Wealth"})
```
 
#### Review overdue
[[#^Top|TOP]]
```dataviewjs
const {taskFunc} = customJS
taskFunc.getLateReviewTasks({app, dv, luxon, that:this, theme: "Wealth"})
```
 
#### Delivery overdue
[[#^Top|TOP]]
```dataviewjs
const {taskFunc} = customJS
taskFunc.getOverdueTasks({app, dv, luxon, that:this, theme: "Wealth"})
```
 
#### Priority tasks
[[#^Top|TOP]]
```dataviewjs
const {taskFunc} = customJS
taskFunc.getPriorityTasks({app, dv, luxon, that:this, theme: "Wealth"})
```
 
---
 
### Todo list
[[#^Top|TOP]]
 
**[[Crypto Tasks]]**
> [!task] Non recurring
> ```tasks
> not done
>is not recurring
>path includes Crypto Tasks
>sort by due
>hide backlink
>hide task count
>```
3 years ago
```ad-task
title: Recurring
~~~tasks
not done
is recurring
path includes Crypto Tasks
sort by due
hide backlink
hide task count
~~~
```
 
**[[Equity Tasks]]**
```ad-task
title: Non recurring
~~~tasks
not done
is not recurring
path includes Equity Tasks
sort by due
hide backlink
hide task count
~~~
```
```ad-task
title: Recurring
~~~tasks
not done
is recurring
path includes Equity Tasks
sort by due
hide backlink
hide task count
~~~
```
 
**[[VC Tasks]]**
```ad-task
title: Non recurring
~~~tasks
not done
is not recurring
path includes VC Tasks
sort by due
hide backlink
hide task count
~~~
```
```ad-task
title: Recurring
~~~tasks
not done
is recurring
path includes VC Tasks
sort by due
hide backlink
hide task count
~~~
```
 
#### Overdue Todos
[[#^Top|TOP]]
```dataview
task from "06.02 Investments"
where DocType = "Task" and DueDate < date(today)
```
&emsp;
#### Urgent Todos
[[#^Top|TOP]]
```dataview
task from "06.02 Investments"
where DocType = "Task" and DueDate < date(today) + dur(3 days)
```
&emsp;
#### High priority
[[#^Top|TOP]]
```dataview
Task from "06.02 Investments"
Where DocType = "Task" and Priority = "High" and DueDate >= date(today)
```
&emsp;
#### Completed To-Dos
[[#^Top|TOP]]
**[[Crypto Tasks]]**
```ad-task
collapse: closed
~~~tasks
done
path includes Crypto Tasks
sort by due
hide backlink
hide task count
~~~
```
&emsp;
**[[Equity Tasks]]**
```ad-task
collapse: closed
~~~tasks
done
path includes Equity Tasks
sort by due
hide backlink
hide task count
~~~
```
&emsp;
**[[VC Tasks]]**
```ad-task
collapse: closed
~~~tasks
done
path includes VC Tasks
sort by due
hide backlink
hide task count
~~~
```
[[#^Top|TOP]]
&emsp;
&emsp;