Browse Source

Moved FAST to Research Notes

master
Julio Biason 3 years ago
parent
commit
484dd021cd
  1. 3
      content/research/_index.md
  2. 4
      content/research/_index.pt.md
  3. 25
      content/research/decoding-fast.md

3
content/research/_index.md

@ -1,5 +1,4 @@
+++ +++
transparent = false transparent = true
title = "Research Notes" title = "Research Notes"
sort_by = "none"
+++ +++

4
content/research/_index.pt.md

@ -0,0 +1,4 @@
+++
transparent = true
title = "Notas de Pesquisas"
+++

25
content/thoughts/decoding-fast.md → content/research/decoding-fast.md

@ -1,7 +1,6 @@
+++ +++
title = "Decoding the FAST Protocol" title = "Decoding the FAST Protocol"
date = 2022-01-05 date = 2022-01-10
draft = true
[taxonomies] [taxonomies]
tags = ["finance", "binary", "protocol", "fix", "fast"] tags = ["finance", "binary", "protocol", "fix", "fast"]
@ -395,37 +394,37 @@ Map, [according to JetTek](https://jettekfix.com/education/fix-fast-tutorial/):
</tr> </tr>
<tr> <tr>
<td>No Operator</td> <td>No Operator</td>
<td>No</td> <td>No.</td>
<td>No</td> <td>No.</td>
</tr> </tr>
<tr> <tr>
<td>Constant</td> <td>Constant</td>
<td>No, the Constant value should be used</td> <td>No, the Constant value should be used.</td>
<td>Yes; if set, use the Constant value; otherwise the field is Null</td> <td>Yes; if set, use the Constant value; otherwise the field is Null.</td>
</tr> </tr>
<tr> <tr>
<td>Copy</td> <td>Copy</td>
<td>Yes; if set, use the incoming value is the current value; <td>Yes; if set, use the incoming value is the current value;
otherwise, use the previous value</td> otherwise, use the previous value.</td>
<td>Yes; same as above, but the value can be Null (e.g., it was read as <td>Yes; same as Mandatory fields, but the value can be Null (e.g., it
0 for Ints or a single Null byte for Strings.</td> was read as 0 for Ints or a single Null byte for Strings.</td>
</tr> </tr>
<tr> <tr>
<td>Default</td> <td>Default</td>
<td>Yes; if set, read the value from the incoming data; otherwise, use <td>Yes; if set, read the value from the incoming data; otherwise, use
the default value.</td> the default value.</td>
<td>Yes; same as above</td> <td>Yes; same as Mandatory fields.</td>
</tr> </tr>
<tr> <tr>
<td>Delta</td> <td>Delta</td>
<td>No; the value should always be added to the previous one.</td> <td>No; the value should always be added to the previous one.</td>
<td>No; same as above</td> <td>No; same as Mandatory fields.</td>
</tr> </tr>
<tr> <tr>
<td>Increment</td> <td>Increment</td>
<td>Yes; if set, read the value from the incoming data; otherwise, add <td>Yes; if set, read the value from the incoming data; otherwise, add
1 to the previous value.</td> 1 to the previous value.</td>
<td>Yes; same as above</td> <td>Yes; same as Mandatory fields.</td>
</tr> </tr>
</table> </table>
@ -498,4 +497,4 @@ my code, so...
### Changelog: ### Changelog:
2022-01-05: First release. 2022-01-10: First release.
Loading…
Cancel
Save